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
# 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])