Internal
problem
ID
[5652]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
36
Problem
number
:
1094
Date
solved
:
Tuesday, March 04, 2025 at 11:16:32 PM
CAS
classification
:
[_quadrature]
ode:=2*diff(y(x),x)^4-y(x)*diff(y(x),x)-2 = 0; dsolve(ode,y(x), singsol=all);
ode=2 (D[y[x],x])^4 -y[x] D[y[x],x]-2 ==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)*Derivative(y(x), x) + 2*Derivative(y(x), x)**4 - 2,0) ics = {} dsolve(ode,func=y(x),ics=ics)