Internal
problem
ID
[12845]
Book
:
An
elementary
treatise
on
differential
equations
by
Abraham
Cohen.
DC
heath
publishers.
1906
Section
:
Chapter
V,
Singular
solutions.
Article
33.
Page
73
Problem
number
:
Ex
2
Date
solved
:
Monday, March 31, 2025 at 07:21:28 AM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=8*(1+diff(y(x),x))^3 = 27*(x+y(x))*(1-diff(y(x),x))^3; dsolve(ode,y(x), singsol=all);
ode=8*(1+D[y[x],x])^3==27*(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") y = Function("y") ode = Eq(-(1 - Derivative(y(x), x))**3*(27*x + 27*y(x)) + 8*(Derivative(y(x), x) + 1)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out