Internal
problem
ID
[18509]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
VII.
Linear
equations
of
order
higher
than
the
first.
section
56.
Problems
at
page
163
Problem
number
:
1
(eq
100)
Date
solved
:
Monday, March 31, 2025 at 05:40:48 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(theta(x),x),x)-p^2*theta(x) = 0; dsolve(ode,theta(x), singsol=all);
ode=D[theta[x],{x,2}]-p^2*theta[x]==0; ic={}; DSolve[{ode,ic},theta[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") p = symbols("p") theta = Function("theta") ode = Eq(-p**2*theta(x) + Derivative(theta(x), (x, 2)),0) ics = {} dsolve(ode,func=theta(x),ics=ics)