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