Internal
problem
ID
[3322]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
38,
page
173
Problem
number
:
14
Date
solved
:
Friday, March 14, 2025 at 01:27:26 AM
CAS
classification
:
[_dAlembert]
ode:=2*diff(y(x),x)^5+2*x*diff(y(x),x) = y(x); dsolve(ode,y(x), singsol=all);
ode=2*D[y[x],x]^5+2*D[y[x],x]*x==y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*x*Derivative(y(x), x) - y(x) + 2*Derivative(y(x), x)**5,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE 2*x*Derivative(y(x), x) - y(x) + 2*Derivative(y(x), x)**5 cannot be solved by the lie group method