I am new to Sagemath. I was trying to solve ODE of order 4 in sagemath but it gives following error "NotImplementedError: Maxima was unable to solve this ODE."
x=var('x')
w = function('w')(x)
desolve(diff(w,x,4)==1,w,contrib_ode=True)
Thanks in advance.