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