Internal
problem
ID
[19494]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
V.
Singular
solutions
Problem
number
:
Ex
8
page
73
Date
solved
:
Thursday, March 13, 2025 at 02:40:26 PM
CAS
classification
:
[[_homogeneous, `class G`], _rational]
ode:=x^3*diff(y(x),x)^2+x^2*y(x)*diff(y(x),x)+a^3 = 0; dsolve(ode,y(x), singsol=all);
ode=x^3*D[y[x],x]^2+x^2*y[x]*D[y[x],x]+a^3==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(a**3 + x**3*Derivative(y(x), x)**2 + x**2*y(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-x**2*y(x) + sqrt(x**3*(-4*a**3 + x*y(x)**2)))/(2*x**3) cannot be solved by the factorable group method