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.
1 | initial version |
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.
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.
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.