Internal
problem
ID
[18793]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
IV.
Singular
solutions.
problems
on
chapter
IV.
page
49
Problem
number
:
Ex.
9
Date
solved
:
Monday, March 31, 2025 at 06:14:46 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _dAlembert]
ode:=(8*diff(y(x),x)^3-27)*x = 12*y(x)*diff(y(x),x)^2; dsolve(ode,y(x), singsol=all);
ode=(8*D[y[x],x]^3-27)*x==12*D[y[x],x]^2*y[x]; 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*(8*Derivative(y(x), x)**3 - 27) - 12*y(x)*Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out