Internal
problem
ID
[18453]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
1.
section
5.
Problems
at
page
19
Problem
number
:
3
Date
solved
:
Thursday, March 13, 2025 at 12:00:02 PM
CAS
classification
:
[_quadrature]
Solve
Time used: 0.178 (sec)
Integrating gives
Singular solutions are found by solving
for
The following diagram is the phase line diagram. It classifies each of the above equilibrium points as stable or not stable or semi-stable.
Solving for
Summary of solutions found
Time used: 0.181 (sec)
To solve an ode of the form
We assume there exists a function
Hence
But since
If the above condition is satisfied, then the original ode is called exact. We still need to determine
Therefore
Comparing (1A) and (2A) shows that
The next step is to determine if the ODE is is exact or not. The ODE is exact when the following condition is satisfied
Using result found above gives
And
Since
Since
The result of integrating gives
And
Now a modified ODE is ontained from the original ODE, which is exact and can be solved. The modified ODE is
The following equations are now set up to solve for the function
Integrating (2) w.r.t.
Where
But equation (1) says that
Solving equation (5) for
Integrating the above w.r.t
Where
But since
Solving for
Summary of solutions found
Time used: 0.317 (sec)
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
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
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 gives
Summary of solutions found
Time used: 0.096 (sec)
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
Solving the above for
Substituting these in (1A) and keeping singular solution that verifies the ode gives
The general solution is found when
This ODE is now solved for
Integrating gives
Singular solutions are found by solving
for
Substituing the above solution for
Summary of solutions found
ode:=diff(y(x),x)+c*y(x) = a; dsolve(ode,y(x), singsol=all);
Maple trace
`Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear <- 1st order linear successful`
Maple step by step
ode=D[y[x],x]+c*y[x]==a; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") c = symbols("c") y = Function("y") ode = Eq(-a + c*y(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)