Internal
problem
ID
[20137]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
IV.
Singular
solutions.
problems
at
page
43
Problem
number
:
Ex.
5
Date
solved
:
Thursday, October 02, 2025 at 05:32:37 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=(1+diff(y(x),x))^3 = 7/4/a*(x+y(x))*(1-diff(y(x),x))^3; dsolve(ode,y(x), singsol=all);
ode=(1+D[y[x],x])^3==2/8*7/a*(x+y[x])*(1-D[y[x],x])^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq((Derivative(y(x), x) + 1)**3 - 7*(1 - Derivative(y(x), x))**3*(x + y(x))/(4*a),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out