Internal
problem
ID
[23110]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
4.
Linear
equations
of
the
first
order.
Exercise
4b
at
page
64
Problem
number
:
3
Date
solved
:
Thursday, October 02, 2025 at 09:22:55 PM
CAS
classification
:
[_linear]
ode:=diff(y(x),x) = (x*y(x)+a^2)/(a^2-x^2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==(x*y[x]+a^2)/(a^2-x^2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (a**2 + x*y(x))/(a**2 - x**2),0) ics = {} dsolve(ode,func=y(x),ics=ics)