Internal
problem
ID
[18240] 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
:
8 Date
solved
:
Monday, December 23, 2024 at 09:18:47 PM CAS
classification
:
[[_homogeneous, `class C`], _Riccati]
Substituting equations
(1E,2E) and \(\omega \) into (A) gives
\begin{equation}
\tag{5E} b_{2}+\left (x +y \right )^{2} \left (b_{3}-a_{2}\right )-\left (x +y \right )^{4} a_{3}-\left (2 x +2 y \right ) \left (x a_{2}+y a_{3}+a_{1}\right )-\left (2 x +2 y \right ) \left (x b_{2}+y b_{3}+b_{1}\right ) = 0
\end{equation}
Putting the above in normal form gives
\[
-x^{4} a_{3}-4 x^{3} y a_{3}-6 x^{2} y^{2} a_{3}-4 x \,y^{3} a_{3}-y^{4} a_{3}-3 x^{2} a_{2}-2 x^{2} b_{2}+x^{2} b_{3}-4 x y a_{2}-2 x y a_{3}-2 x y b_{2}-y^{2} a_{2}-2 y^{2} a_{3}-y^{2} b_{3}-2 x a_{1}-2 x b_{1}-2 y a_{1}-2 y b_{1}+b_{2} = 0
\]
Setting the
numerator to zero gives
\begin{equation}
\tag{6E} -x^{4} a_{3}-4 x^{3} y a_{3}-6 x^{2} y^{2} a_{3}-4 x \,y^{3} a_{3}-y^{4} a_{3}-3 x^{2} a_{2}-2 x^{2} b_{2}+x^{2} b_{3}-4 x y a_{2}-2 x y a_{3}-2 x y b_{2}-y^{2} a_{2}-2 y^{2} a_{3}-y^{2} b_{3}-2 x a_{1}-2 x b_{1}-2 y a_{1}-2 y b_{1}+b_{2} = 0
\end{equation}
Looking at the above PDE shows the following are all
the terms with \(\{x, y\}\) in them.
\[
\{x, y\}
\]
The following substitution is now made to be able to
collect on all terms with \(\{x, y\}\) in them
The next step is to determine the canonical coordinates \(R,S\). The canonical coordinates map \(\left ( x,y\right ) \to \left ( R,S \right )\)
where \(\left ( R,S \right )\) are the canonical coordinates which make the original ode become a quadrature and
hence solved by integration.
The characteristic pde which is used to find the canonical coordinates is
The above comes from the requirements that \(\left ( \xi \frac {\partial }{\partial x} + \eta \frac {\partial }{\partial y}\right ) S(x,y) = 1\). Starting with the first pair of ode’s in (1)
gives an ode to solve for the independent variable \(R\) in the canonical coordinates, where \(S(R)\). Since
\(\xi =0\) then in this special case
\begin{align*} R = x \end{align*}
\(S\) is found from
\begin{align*} S &= \int { \frac {1}{\eta }} dy\\ &= \int { \frac {1}{x^{2}+2 x y +y^{2}+1}} dy \end{align*}
We now need to express the RHS as function of \(R\) only. This is done by solving for \(x,y\) in terms of
\(R,S\) from the result obtained earlier and simplifying. This gives
\begin{align*} \frac {dS}{dR} &= 1 \end{align*}
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 \(R,S\).
Since the ode has the form \(\frac {d}{d R}S \left (R \right )=f(R)\), then we only need to integrate \(f(R)\).
\begin{align*} \int {dS} &= \int {1\, dR}\\ S \left (R \right ) &= R + c_2 \end{align*}
To complete the solution, we just need to transform the above back to \(x,y\) coordinates. This
results in
\begin{align*} \arctan \left (x +y\right ) = x +c_2 \end{align*}
\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & y^{\prime }=\left (x +y\right )^{2} \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 1 \\ {} & {} & y^{\prime } \\ \bullet & {} & \textrm {Solve for the highest derivative}\hspace {3pt} \\ {} & {} & y^{\prime }=\left (x +y\right )^{2} \end {array} \]
Maple trace
`Methodsfor first order ODEs:---Trying classification methods ---tryinga quadraturetrying1st order lineartryingBernoullitryingseparabletryinginverse lineartryinghomogeneous types:tryinghomogeneous C1storder, trying the canonical coordinates of the invariance group-> Calling odsolve with the ODE`, diff(y(x), x) = -1, y(x)` *** Sublevel 2 ***Methods for first order ODEs:--- Trying classification methods ---trying a quadraturetrying 1st order linear<- 1st order linear successful<-1st order, canonical coordinates successful<-homogeneous successful`