Internal
problem
ID
[16649]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
4.
Equations
with
variables
separable
and
equations
reducible
to
them.
Exercises
page
38
Problem
number
:
63
Date
solved
:
Monday, March 31, 2025 at 03:03:33 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=a^2+y(x)^2+2*x*(a*x-x^2)^(1/2)*diff(y(x),x) = 0; ic:=y(a) = 0; dsolve([ode,ic],y(x), singsol=all);
ode=(a^2+y[x]^2)+2*x*Sqrt[a*x-x^2]*D[y[x],x]==0; ic={y[a]==0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(a**2 + 2*x*sqrt(a*x - x**2)*Derivative(y(x), x) + y(x)**2,0) ics = {y(a): 0} dsolve(ode,func=y(x),ics=ics)
ValueError : Couldnt solve for initial conditions