Internal
problem
ID
[3307]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
37,
page
171
Problem
number
:
23
Date
solved
:
Sunday, March 30, 2025 at 01:34:23 AM
CAS
classification
:
[[_homogeneous, `class G`], _rational]
ode:=x^2-3*y(x)*diff(y(x),x)+diff(y(x),x)^2*x = 0; dsolve(ode,y(x), singsol=all);
ode=x^2-3*D[y[x],x]*y[x]+x*D[y[x],x]^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**2 + x*Derivative(y(x), x)**2 - 3*y(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (sqrt(-4*x**3 + 9*y(x)**2) + 3*y(x))/(2*x) cannot be solved by the factorable group method