Internal
problem
ID
[5506]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
31
Problem
number
:
927
Date
solved
:
Tuesday, March 04, 2025 at 09:50:19 PM
CAS
classification
:
[_quadrature]
ode:=x^3*diff(y(x),x)^2 = a; dsolve(ode,y(x), singsol=all);
ode=x^3 (D[y[x],x])^2==a; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a + x**3*Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)