Internal
problem
ID
[16780]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
11.
Singular
solutions
of
differential
equations.
Exercises
page
92
Problem
number
:
267
Date
solved
:
Thursday, March 13, 2025 at 08:45:35 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=8*diff(y(x),x)^3-12*diff(y(x),x)^2 = 27*y(x)-27*x; dsolve(ode,y(x), singsol=all);
ode=8*D[y[x],x]^3-12*D[y[x],x]^2==27*(y[x]-x); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") y = Function("y") ode = Eq(27*x - 27*y(x) + 8*Derivative(y(x), x)**3 - 12*Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out