Internal
problem
ID
[15526]
Book
:
Ordinary
Differential
Equations.
An
introduction
to
the
fundamentals.
Kenneth
B.
Howell.
second
edition.
CRC
Press.
FL,
USA.
2020
Section
:
Chapter
28.
The
inverse
Laplace
transform.
Additional
Exercises.
page
509
Problem
number
:
28.8
(d)
Date
solved
:
Thursday, March 13, 2025 at 06:10:54 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
Using Laplace method With initial conditions
ode:=diff(diff(y(t),t),t)+8*diff(y(t),t)+17*y(t) = 0; ic:=y(0) = 3, D(y)(0) = -12; dsolve([ode,ic],y(t),method='laplace');
ode=D[y[t],{t,2}]+8*D[y[t],t]+17*y[t]==0; ic={y[0]==3,Derivative[1][y][0] ==-12}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(17*y(t) + 8*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {y(0): 3, Subs(Derivative(y(t), t), t, 0): -12} dsolve(ode,func=y(t),ics=ics)