Internal
problem
ID
[5622]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
35
Problem
number
:
1057
Date
solved
:
Tuesday, March 04, 2025 at 10:45:28 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=8*diff(y(x),x)^3+12*diff(y(x),x)^2 = 27*x+27*y(x); dsolve(ode,y(x), singsol=all);
ode=8 (D[y[x],x])^3 + 12 (D[y[x],x])^2 ==27(x+y[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