Internal
problem
ID
[18497]
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
33.
Problems
at
page
91
Problem
number
:
4
(eq
50)
Date
solved
:
Monday, March 31, 2025 at 05:37:44 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
Time used: 1.933 (sec)
Solve
reversing the roles of the dependent and independent variables, the ode becomes
Which is now solved for
Time used: 1.299 (sec)
This is second order ode with missing dependent variable
Then
Hence the ode becomes
Which 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.
Therefore the solutions found are
In summary, these are the solution found for
For solution
Solving for the derivative gives these ODE’s to solve
Now each of the above is solved separately.
Solving Eq. (1)
Since the ode has the form
Solving Eq. (2)
Since the ode has the form
For solution
Since the ode has the form
In summary, these are the solution found for
Will add steps showing solving for IC soon.
Summary of solutions found
Now that the reversed roles ode was solved, we will change back to the original roles. This results in the above solution becoming the following.
Will add steps showing solving for IC soon.
Summary of solutions found
ode:=diff(diff(phi(x),x),x) = 4*Pi*n*c/(v__0^2+2*e/m*(phi(x)-V__0))^(1/2); dsolve(ode,phi(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying 2nd order Liouville trying 2nd order WeierstrassP trying 2nd order JacobiSN differential order: 2; trying a linearization to 3rd order trying 2nd order ODE linearizable_by_differentiation trying 2nd order, 2 integrating factors of the form mu(x,y) trying differential order: 2; missing variables -> Computing symmetries using: way = 3 -> Calling odsolve with the ODE, diff(_b(_a),_a)*_b(_a)-4*Pi*n*c/(-(-m*v__0^2+2 *V__0*e-2*_a*e)/m)^(1/2) = 0, _b(_a), HINT = [[-2/3*(-m*v__0^2+2*V__0*e-2*_a*e) /e, 1/3*_b]] *** Sublevel 2 *** symmetry methods on request 1st order, trying reduction of order with given symmetries: [-2/3*(-m*v__0^2+2*V__0*e-2*_a*e)/e, 1/3*_b] 1st order, trying the canonical coordinates of the invariance group -> Calling odsolve with the ODE, diff(y(x),x) = y(x)/((4*x-4*V__0)*e+2* v__0^2*m)*e, y(x) *** Sublevel 3 *** Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear <- 1st order linear successful <- 1st order, canonical coordinates successful <- differential order: 2; canonical coordinates successful <- differential order 2; missing variables successful
ode=D[phi[x],{x,2}]==4*Pi*n*c/Sqrt[v0^2+2*e/m*(phi[x]-V0)]; ic={}; DSolve[{ode,ic},phi[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") V__0 = symbols("V__0") c = symbols("c") e = symbols("e") m = symbols("m") n = symbols("n") v__0 = symbols("v__0") phi = Function("phi") ode = Eq(-4*pi*c*n/sqrt(2*e*(-V__0 + phi(x))/m + v__0**2) + Derivative(phi(x), (x, 2)),0) ics = {} dsolve(ode,func=phi(x),ics=ics)
Timed Out