Internal
problem
ID
[3246]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
35,
page
157
Problem
number
:
3
Date
solved
:
Tuesday, March 04, 2025 at 04:09:03 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(x(t),t),t)+k^2*x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]+k^2*x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") k = symbols("k") x = Function("x") ode = Eq(k**2*x(t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)