Internal
problem
ID
[18502]
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
(c)
Date
solved
:
Monday, March 31, 2025 at 05:38:29 PM
CAS
classification
:
[_quadrature]
ode:=(1+diff(v(u),u))^(1/2) = 1/2*exp(u); dsolve(ode,v(u), singsol=all);
ode=Sqrt[1+D[v[u],u]]==Exp[u]/2; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(sqrt(Derivative(v(u), u) + 1) - exp(u)/2,0) ics = {} dsolve(ode,func=v(u),ics=ics)