Internal
problem
ID
[8975]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
5.0
Problem
number
:
15
Date
solved
:
Friday, April 25, 2025 at 05:32:28 PM
CAS
classification
:
[_quadrature]
Solve
Solving for the derivative gives these ODE’s to solve
Now each of the above is solved separately.
Solving Eq. (1)
Unable to integrate (or intergal too complicated), and since no initial conditions are given, then the result can be written as
Singular solutions are found by solving
for
Solving Eq. (2)
Unable to integrate (or intergal too complicated), and since no initial conditions are given, then the result can be written as
Singular solutions are found by solving
for
Which simplifies to
ode:=h(u)^2+2*a*h(u)/(1+diff(h(u),u)^2)^(1/2) = b^2; dsolve(ode,h(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 x successful
Maple step by step
ode=h[u]^2 + 2*a*h[u]/Sqrt[1 + (D[ h[u],u])^2] == b^2; ic={}; DSolve[{ode,ic},h[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") a = symbols("a") b = symbols("b") h = Function("h") ode = Eq(2*a*h(u)/sqrt(Derivative(h(u), u)**2 + 1) - b**2 + h(u)**2,0) ics = {} dsolve(ode,func=h(u),ics=ics)
Timed Out