Internal
problem
ID
[9122]
Book
:
Second
order
enumerated
odes
Section
:
section
1
Problem
number
:
51
Date
solved
:
Wednesday, March 05, 2025 at 07:26:17 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=y(x)*diff(diff(y(x),x),x)^3+y(x)^3*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=y[x]*D[y[x],{x,2}]^3+y[x]^3*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)**3*Derivative(y(x), x) + y(x)*Derivative(y(x), (x, 2))**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)