Internal
problem
ID
[18431]
Book
:
Elementary
Differential
Equations.
By
R.L.E.
Schwarzenberger.
Chapman
and
Hall.
London.
First
Edition
(1969)
Section
:
Chapter
3.
Solutions
of
first-order
equations.
Exercises
at
page
47
Problem
number
:
3
(iii)
Date
solved
:
Monday, March 31, 2025 at 05:28:23 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
Time used: 0.310 (sec)
Solve
In canonical form, the ODE is
An ode of the form
In this case, it can be seen that both
Applying the
transformation
Or
Or
Which is now solved as 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.
The solution
Converting
Summary of solutions found
Time used: 0.074 (sec)
Solve
Applying change of variables
Which is now solved 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.
The solution
Converting
Summary of solutions found
Time used: 0.093 (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.
The solution
Converting
Summary of solutions found
Time used: 0.417 (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
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
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
This is easily solved to give
Where now the coordinate
And
Integrating gives
Where the constant of integration is set to zero as we just need one solution. 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
The following diagram shows solution curves of the original ode and how they transform in the canonical coordinates space using the mapping shown.
Original ode in |
Canonical coordinates transformation |
ODE in canonical coordinates |
|
|
|
|
|
|
|
||
|
Summary of solutions found
Time used: 0.369 (sec)
Solve
Let
Solving for
This has the form
Where
Taking derivative of (*) w.r.t.
Comparing the form
Hence (2) becomes
The singular solution is found by setting
No valid singular solutions found.
The general solution is found when
This ODE is now solved for
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.
The solution
Therefore the solutions found are
Substituing the above solution for
The solution
was found not to satisfy the ode or the IC. Hence it is removed. The solution
was found not to satisfy the ode or the IC. Hence it is removed.
Summary of solutions found
ode:=diff(x(t),t) = cos(x(t)/t); dsolve(ode,x(t), singsol=all);
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear trying Bernoulli trying separable trying inverse linear trying homogeneous types: trying homogeneous D <- homogeneous successful
Maple step by step
ode=D[x[t],t]==Cos[x[t]/t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-cos(x(t)/t) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)