Internal
problem
ID
[7131]
Book
:
Ordinary
Differential
Equations,
By
Tenenbaum
and
Pollard.
Dover,
NY
1963
Section
:
Chapter
8.
Special
second
order
equations.
Lesson
35.
Independent
variable
x
absent
Problem
number
:
Exercise
35.2,
page
504
Date
solved
:
Tuesday, September 30, 2025 at 04:21:52 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=y(x)^3*diff(diff(y(x),x),x) = k; dsolve(ode,y(x), singsol=all);
ode=y[x]^3*D[y[x],{x,2}]==k; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") k = symbols("k") y = Function("y") ode = Eq(-k + y(x)**3*Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)