Internal
problem
ID
[9466]
Book
:
Differential
Equations:
Theory,
Technique,
and
Practice
by
George
Simmons,
Steven
Krantz.
McGraw-Hill
NY.
2007.
1st
Edition.
Section
:
Chapter
7.
Laplace
Transforms.
Section
7.5
Problesm
for
review
and
discovery.
Section
A,
Drill
exercises.
Page
309
Problem
number
:
4(d)
Date
solved
:
Tuesday, September 30, 2025 at 06:19:06 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
Using Laplace method
ode:=diff(diff(y(t),t),t)-7*diff(y(t),t)+12*y(t) = t*exp(2*t); dsolve(ode,y(t),method='laplace');
ode=D[y[t],{t,2}]-7*D[y[t],t]+12*y[t]==t*Exp[2*t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-t*exp(2*t) + 12*y(t) - 7*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)