SAGE Open Source Mathematics Software
Examples of calculus , linear algebra 
and differential equations
by Reinaldo Baretti Machín,
and Alfonso Baretti Huertas
 

www.oocities.org/serienumerica4
www.oocities.org/serienumerica3
www.oocities.org/serienumerica2
www.oocities.org/serienumerica
www.oocities.org/fisicageneral2009
Para preguntas y sugerencias escriba a :
reibaretti2004@yahoo.com


Examples of calculus/plots/linear algebra (Sage)
reibarettiToggle Home Published Log Settings Report a Problem Help Sign out
Examples of calculus/plots/lin ...
last edited on February 17, 2009 06:10 AM by reibaretti
     Typeset PrintPrint Worksheet Edit Text Undo Share Publish
evaluate
       
6*x
6*x
evaluate
       
2*x
2*x
evaluate
       
x^3/3
x^3/3
evaluate
       
9
9
evaluate
       
evaluate
       
evaluate
       
evaluate
       
evaluate
       
1/2 - e^-40/2
1/2 - e^-40/2
evaluate
       
[[x == 7/19, y == 1/19]]
[[x == 7/19, y == 1/19]]
evaluate
       
# To solve the equation x'+5*x-1=0: 

t = var('t')    # define a variable t
x = function('x',t)   # define x to be a function of that variable
DE = lambda y: diff(y,t) + 5*y - 1
desolve(DE(x(t)), [x,t])