Internal
problem
ID
[8757]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
45
Date
solved
:
Wednesday, March 05, 2025 at 06:45:55 AM
CAS
classification
:
[_dAlembert]
ode:=y(x)*diff(y(x),x) = 1-x*diff(y(x),x)^3; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]*y[x]==1-x*(D[y[x],x])^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*Derivative(y(x), x)**3 + y(x)*Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out