Sage beginner’s guide is a book by Craig Finch, published recently by PACKT publishing. After spending two weeks looking at different aspects of the book, I can say with property that this is an excellent book, an I’ll recommend it for beginners to medium experienced SAGE users. Since this is the first book I review, [...]
Posts Tagged ‘Sage-dev’
Review: Sage beginner’s guide.
Posted in Hobbies, Linux, Personal, SAGE, Science, tagged Book, Calculation, CLI, Command, Computers, Craig, Finch, Free, Functions, Graphics, How to, HowTo, Install, LaTeX, Line, Linux, Maple, Mathematica, Mathematics, Matlab, Notebook, Online, Packages, Plot, Plotting, Programming, Python, Review, Sage, Sage-dev, Sagemath, Symbolic, Tips and Tricks, Ubuntu on June 21, 2011 | Leave a Comment »
Sage tip: Plots with shadow
Posted in Linux, Mathematics, SAGE, tagged Graphics, How to, HowTo, Linux, Notebook, Plots, Sage, Sage-dev, Sagemath, Shadow, Tips and Tricks on May 19, 2011 | 1 Comment »
No comments! It was beautiful p = plot(sin(x), (x,-5, 5), thickness=2, color=’red’) for n in xrange(1,20): p += plot((1-n/20)*sin(x), (x,-pi,0), thickness=0, fill=’axis’, fillcolor=’blue’, fillalpha=.01) p += plot((1-n/20)*sin(x), (x,0,pi), thickness=0, fill=’axis’, fillcolor=’gray’, fillalpha=.01) show(p, figsize=10,ticks=pi/3,tick_formatter=pi, fontsize=16) reset() var(‘x’) f(x) = sin(x) p = plot(f(x), (x,-5, 5), thickness=2, color=’red’) for n in xrange(1,20): p += plot(((n-1)/20)*sin(x), (x,-pi,0), [...]
SAGE tip: GRmodule. Day 07.
Posted in Mathematics, Physics, SAGE, tagged Calculation, chrome, chromium, CLI, Command, Dictionary, Eye, Free, Functions, General, GRPy, How to, HowTo, Install, Joris, Keys, Line, Linux, Maple, Mathematica, Mathematics, Matlab, Module, Notebook, Numpy, Packages, Physics, Programming, Python, Relativity, Sage, Sage-dev, Sagemath, Science, Symbolic, Sympy, Tensor, Tensors, Terminal, Tips and Tricks, Ubuntu, Vankerschaver, Web Browser on February 26, 2011 | Leave a Comment »
This code is supposed to be (if some one does the work in the future) located in sage.tensor.differential_form_element. The code presented below is a slight modification of Joris code for differential forms manipulation on SAGE. Needed modules from sage.symbolic.ring import SymbolicRing, SR from sage.rings.ring_element import RingElement from sage.algebras.algebra_element import AlgebraElement from sage.rings.integer import Integer from [...]
SAGE tip: Exponentiate a Matrix
Posted in Linux, Mathematics, Physics, Science, tagged Differential, Exponentiate, Geometry, Groups, How to, HowTo, Linux, Maple, Mathematica, Mathematics, Matlab, Matrix, Mechanics, Notebook, Operator, Programming, Python, Quantum, Rewrite, Sage, Sage-dev, Sagemath, Simplify, Symbolic, Terminal, Theory, Tips and Tricks, Ubuntu, Web Browser on February 24, 2011 | 2 Comments »
From time to time when one works with operators, such as in Quantum mechanics, something like an exponential of the operator appears (this is also the case in many areas of Mathematics like group theory of differential geometry). This exponentiation of a matrix should be understood as the series expansion of the exponential. SAGE knows [...]