Internal
problem
ID
[18491]
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
32.
Problems
at
page
89
Problem
number
:
5
Date
solved
:
Monday, March 31, 2025 at 05:37:26 PM
CAS
classification
:
[[_homogeneous, `class G`]]
Time used: 0.358 (sec)
Solve
Solving for
Each of the above ode’s is now solved An ode
Where here
Since the ode is isobaric of order
Converts the ODE to a separable in
The ode
is separable as it can be written as
Where
Integrating gives
We now need to find the singular solutions, these are found by finding for what values
for
Now we go over each such singular solution and check if it verifies the ode itself and any initial conditions given. If it does not then the singular solution will not be used.
Therefore the solutions found are
Converting
Converting
Solving for
Which simplifies to
Summary of solutions found
Time used: 1.517 (sec)
Solve
Writing the ode as
The condition of Lie symmetry is the linearized PDE given by
To determine
Where the unknown coefficients are
Substituting equations (1E,2E) and
Putting the above in normal form gives
Setting the numerator to zero gives
Simplifying the above gives
Since the PDE has radicals, simplifying gives
Looking at the above
PDE shows the following are all the terms with
The following substitution is now made to be able to collect on all terms with
The above PDE (6E) now becomes
Collecting the above on the terms
Equation (7E) now becomes
Setting each coefficients in (8E) to zero gives the following equations to solve
Solving the above equations for the unknowns gives
Substituting the above solution in the anstaz (1E,2E) (using
Shifting is now applied to make
The next step is to determine the canonical coordinates
The characteristic pde which is used to find the canonical coordinates is
The above comes from the requirements that
Which results in
Now that
Where in the above
Evaluating all the partial derivatives gives
Substituting all the above in (2) and simplifying gives the ode in canonical coordinates.
We now need to express the RHS as function of
The above is a quadrature ode. This is the whole point of Lie symmetry method. It converts an ode, no matter how complicated it is, to one that can be solved by integration when the ode is in the canonical coordiates
Since the ode has the form
To complete the solution, we just need to transform the above back to
Which simplifies to
Summary of solutions found
ode:=(t^2+T(t))^(1/2) = diff(T(t),t); dsolve(ode,T(t), singsol=all);
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying homogeneous types: trying homogeneous G 1st order, trying the canonical coordinates of the invariance group <- 1st order, canonical coordinates successful <- homogeneous successful
Maple step by step
ode=Sqrt[t^2+T[t]]==D[T[t],t]; ic={}; DSolve[{ode,ic},T[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") T = Function("T") ode = Eq(sqrt(t**2 + T(t)) - Derivative(T(t), t),0) ics = {} dsolve(ode,func=T(t),ics=ics)
NotImplementedError : The given ODE -sqrt(t**2 + T(t)) + Derivative(T(t), t) cannot be solved by the factorable group method