Internal
problem
ID
[18501]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
33.
Problems
at
page
91
Problem
number
:
9
(b)
Date
solved
:
Monday, March 31, 2025 at 05:38:25 PM
CAS
classification
:
[_separable]
ode:=(-u^2+1)^(1/2)*diff(v(u),u) = 2*u*(1-v(u)^2)^(1/2); dsolve(ode,v(u), singsol=all);
ode=Sqrt[1-u^2]*D[v[u],u]==2*u*Sqrt[1-v[u]^2]; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(-2*u*sqrt(1 - v(u)**2) + sqrt(1 - u**2)*Derivative(v(u), u),0) ics = {} dsolve(ode,func=v(u),ics=ics)