Ask Your Question
0

How to solve ODE y'y''+y''-xy'+y=0?

asked 2013-10-26 07:34:07 +0200

anonymous user

Anonymous

How to find the solution for ode y'y''+y''-xy'+y=0? y(x)=??? please help me. i dont have any idea how to solve it. because i never meet this kind of equation before. thx

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2013-10-26 10:07:06 +0200

tmonteil gravatar image

Sage seems currently not able to solve this ODE symbolically nor numerically:

sage: x = var('x')
sage: y = function('y', x)
sage: desolve(diff(y,x)*diff(y,x,2) + diff(y,x,2) - x*diff(y,x) + y, y)
NotImplementedError: Maxima was unable to solve this ODE.

sage: desolve_rk4(diff(y,x)*diff(y,x,2) + diff(y,x,2) - x*diff(y,x) + y, y, ics=[1,1,1])
TypeError: Error executing code in Maxima
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2013-10-26 07:34:07 +0200

Seen: 545 times

Last updated: Oct 26 '13