Internal
problem
ID
[18494]
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
:
1
Date
solved
:
Monday, March 31, 2025 at 05:37:36 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(theta(t),t),t) = -p^2*theta(t); dsolve(ode,theta(t), singsol=all);
ode=D[theta[t],{t,2}]==-p^2*theta[t]; ic={}; DSolve[{ode,ic},theta[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") p = symbols("p") theta = Function("theta") ode = Eq(p**2*theta(t) + Derivative(theta(t), (t, 2)),0) ics = {} dsolve(ode,func=theta(t),ics=ics)