Internal
problem
ID
[19863]
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
:
10
(b)
Date
solved
:
Thursday, October 02, 2025 at 04:51:34 PM
CAS
classification
:
[_separable]
ode:=1+v(u)^2+(u^2+1)*v(u)*diff(v(u),u) = 0; dsolve(ode,v(u), singsol=all);
ode=(1+v[u]^2)+(1+u^2)*v[u]*D[v[u],u]==0; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq((u**2 + 1)*v(u)*Derivative(v(u), u) + v(u)**2 + 1,0) ics = {} dsolve(ode,func=v(u),ics=ics)