Internal
problem
ID
[7676]
Book
:
Basic
Training
in
Mathematics.
By
R.
Shankar.
Plenum
Press.
NY.
1995
Section
:
Chapter
10,
Differential
equations.
Section
10.2,
ODEs
with
constant
Coefficients.
page
307
Problem
number
:
10.2.4
Date
solved
:
Tuesday, September 30, 2025 at 04:55:48 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(x(t),t),t)-omega^2*x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]-\[Omega]^2*x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") omega = symbols("omega") x = Function("x") ode = Eq(-omega**2*x(t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)