| 1 | initial version |
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
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.