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]]
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);
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