Internal
problem
ID
[6689]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
10.
Singular
solutions,
Extraneous
loci.
Supplemetary
problems.
Page
74
Problem
number
:
18
Date
solved
:
Sunday, March 30, 2025 at 11:18:22 AM
CAS
classification
:
[[_1st_order, _with_linear_symmetries]]
ode:=diff(y(x),x)^3-4*x^4*diff(y(x),x)+8*x^3*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]^3-4*x^4*D[y[x],x]+8*x^3*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-4*x**4*Derivative(y(x), x) + 8*x**3*y(x) + Derivative(y(x), x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out