Internal
problem
ID
[20285]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
VIII.
End
of
chapter
problems
at
page
107
Problem
number
:
Ex.
19
Date
solved
:
Thursday, October 02, 2025 at 05:40:59 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=y(x)^3*diff(diff(y(x),x),x) = a; dsolve(ode,y(x), singsol=all);
ode=y[x]^3*D[y[x],{x,2}]==a; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a + y(x)**3*Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)