Internal
problem
ID
[21848]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
II.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
33.
Systems
of
ordinary
differential
equations.
Page
1059
Problem
number
:
33-1
(a)
Date
solved
:
Thursday, October 02, 2025 at 08:02:51 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x)*G(y),0]`]]
ode:=(1-y(x)^2)^(1/2)+(2*y(x)+x)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Sqrt[1-y[x]^2]+(x+2*y[x])*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sqrt(1 - y(x)**2) + (x + 2*y(x))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)