Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 6 years ago

Thrash gravatar image

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

I want Sage to solve this equation: y3y+y5y=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: y3y+y5y=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: y3y+y5y=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.