Internal
problem
ID
[18500]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
V.
Singular
solutions.
section
36.
Problems
at
page
99
Problem
number
:
1
(eq
98)
Date
solved
:
Thursday, March 13, 2025 at 12:08:49 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries]]
Solve
Solving for the derivative gives these ODE’s to solve
Now each of the above is solved separately.
Solving Eq. (1)
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
Converting
Solving Eq. (2)
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
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
Solving Eq. (3)
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
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
ode:=4*y(x)*diff(y(x),x)^3-2*x^2*diff(y(x),x)^2+4*x*y(x)*diff(y(x),x)+x^3 = 16*y(x)^2; dsolve(ode,y(x), singsol=all);
Maple step by step
ode=4*y[x]*D[y[x],x]^3-2*x^2*D[y[x],x]^2+4*x*y[x]*D[y[x],x]+x^3==16*y[x]^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**3 - 2*x**2*Derivative(y(x), x)**2 + 4*x*y(x)*Derivative(y(x), x) - 16*y(x)**2 + 4*y(x)*Derivative(y(x), x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out