First time here? Check out the FAQ!

Ask Your Question
0

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

asked 11 years ago

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

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 11 years ago

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
Preview: (hide)
link

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: 11 years ago

Seen: 645 times

Last updated: Oct 26 '13