Internal
problem
ID
[13582]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
9,
The
Laplace
transform.
Section
9.3,
Exercises
page
452
Problem
number
:
10
Date
solved
:
Monday, March 31, 2025 at 08:01:45 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
ode:=diff(diff(y(t),t),t)-8*diff(y(t),t)+15*y(t) = 9*t*exp(2*t); ic:=y(0) = 5, D(y)(0) = 10; dsolve([ode,ic],y(t),method='laplace');
ode=D[y[t],{t,2}]-8*D[y[t],t]+15*y[t]==9*t*Exp[2*t]; ic={y[0]==5,Derivative[1][y][0]==10}; DSolve[{ode,ic},{y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-9*t*exp(2*t) + 15*y(t) - 8*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {y(0): 5, Subs(Derivative(y(t), t), t, 0): 10} dsolve(ode,func=y(t),ics=ics)