2.6.9 Problem 9 (c)

Solved as first order quadrature ode
Maple
Mathematica
Sympy

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

1+v=eu2

Solved as first order quadrature ode

Time used: 0.080 (sec)

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

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

Summary of solutions found

v=u+e2u8+c1
Maple. Time used: 0.009 (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+v=eu2Highest derivative means the order of the ODE is1vSolve for the highest derivativev=(eu)241Integrate both sides with respect touvdu=((eu)241)du+C1Evaluate integralv=u+(eu)28+C1Solve forvv=u+(eu)28+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