Ask Your Question

sonimohit's profile - activity

2024-02-20 19:38:45 +0200 received badge  Famous Question (source)
2024-02-20 19:38:45 +0200 received badge  Notable Question (source)
2021-12-31 22:30:24 +0200 received badge  Popular Question (source)
2020-12-07 12:25:50 +0200 received badge  Nice Question (source)
2020-12-07 07:15:28 +0200 received badge  Student (source)
2020-12-07 01:42:20 +0200 asked a question How to solve higher order (3rd or 4th) differential equation?

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.