Internal
problem
ID
[3245]
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
:
2
Date
solved
:
Sunday, March 30, 2025 at 01:23:44 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(y(t),t),t) = k^2*y(t); dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]==k^2*y[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") k = symbols("k") y = Function("y") ode = Eq(-k**2*y(t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)