2.6.9 Problem 9 (c)

Solved using first_order_ode_quadrature
Maple
Mathematica
Sympy

Internal problem ID [18495]
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 : Saturday, April 26, 2025 at 11:24:35 AM
CAS classification : [_quadrature]

Solved using first_order_ode_quadrature

Time used: 0.082 (sec)

Solve

1+v=eu2

Since the ode has the form v=f(u), then we only need to integrate f(u).

dv=e2u41duv=u+e2u8+c1
Figure 2.65: Slope field 1+v=eu2

Summary of solutions found

v=u+e2u8+c1
Maple. Time used: 0.026 (sec). Leaf size: 17
ode:=(1+diff(v(u),u))^(1/2) = 1/2*exp(u); 
dsolve(ode,v(u), singsol=all);
 
v=e2u8ln(eu)+c1

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

Let’s solve1+dduv(u)=eu2Highest derivative means the order of the ODE is1dduv(u)Solve for the highest derivativedduv(u)=(eu)241Integrate both sides with respect tou(dduv(u))du=((eu)241)du+C1Evaluate integralv(u)=u+(eu)28+C1Simplifyv(u)=u+e2u8+C1
Mathematica. Time used: 0.015 (sec). Leaf size: 20
ode=Sqrt[1+D[v[u],u]]==Exp[u]/2; 
ic={}; 
DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
 
v(u)u+e2u8+c1
Sympy. Time used: 0.192 (sec). Leaf size: 12
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)
 
v(u)=C1u+e2u8