Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

How can I solve the following (linear) differential equation?

I want Sage to solve this equation: $y'''-3y''+y'-5y=0$.

Both

y=function('y')(x) 
desolve(diff(y,3)+3*diff(y,2)+diff(y,1)-5*y,y)

and

giac("desolve([y'''-3y''+y'-5y],y)").sage()

result in errors.

results in an error.

How can I solve the following (linear) differential equation?

I want Sage to solve this equation: $y'''-3y''+y'-5y=0$.

Both

y=function('y')(x) 
desolve(diff(y,3)+3*diff(y,2)+diff(y,1)-5*y,y)

and

giac("desolve([y'''-3y''+y'-5y],y)").sage()

result in errors.

results in an error.

How can I solve the following (linear) differential equation?

I want Sage to solve this equation: $y'''-3y''+y'-5y=0$.

Both

y=function('y')(x) 
desolve(diff(y,3)+3*diff(y,2)+diff(y,1)-5*y,y)
desolve(diff(y,3)-3*diff(y,2)+diff(y,1)-5*y,y)

and

giac("desolve([y'''-3y''+y'-5y],y)").sage()

result in errors.