Sage/First Steps
Installation
Commandline Interface
Notebook Interface
Introduction
Sage is based on Python. With some exceptions, all commands are regular Python syntax.
Very simple calculation
- Numbers
> sage: 1+1 > 2
- Symbolic expression
> sage: sqrt(2) > sqrt(2)
- Evaluate a symbolic expression
> sage: sqrt(2).n(digits=100) > 1.414213562373095048801688724209698078569671875376948073176679737990732478462107038850387534327641573
Arrays
> sage: a = [1,2,3] > sage: sum(a) > 6