Internal
problem
ID
[18494]
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
:
Thursday, March 13, 2025 at 12:07:55 PM
CAS
classification
:
[_quadrature]
Solve
Time used: 0.080 (sec)
Since the ode has the form
Summary of solutions found
ode:=(1+diff(v(u),u))^(1/2) = 1/2*exp(u); dsolve(ode,v(u), singsol=all);
Maple trace
`Methods for first order ODEs: -> Solving 1st order ODE of high degree, 1st attempt trying 1st order WeierstrassP solution for high degree ODE trying 1st order WeierstrassPPrime solution for high degree ODE trying 1st order JacobiSN solution for high degree ODE trying 1st order ODE linearizable_by_differentiation trying differential order: 1; missing variables <- differential order: 1; missing y(x) successful`
Maple step by step
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)