Internal
problem
ID
[61]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.4
(separable
equations).
Problems
at
page
43
Problem
number
:
21
Date
solved
:
Tuesday, March 04, 2025 at 10:41:11 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=2*y(x)*diff(y(x),x) = x/(x^2-16)^(1/2); ic:=y(5) = 2; dsolve([ode,ic],y(x), singsol=all);
ode=2*y[x]*D[y[x],x]== x/Sqrt[x^2-16]; ic={y[5]==2}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x/sqrt(x**2 - 16) + 2*y(x)*Derivative(y(x), x),0) ics = {y(5): 2} dsolve(ode,func=y(x),ics=ics)