Internal
problem
ID
[9460]
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
:
3(b)
Date
solved
:
Tuesday, September 30, 2025 at 06:19:03 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using Laplace method With initial conditions
ode:=diff(diff(y(t),t),t)+3*diff(y(t),t)-2*y(t) = -6*exp(Pi-t); ic:=[y(Pi) = 1, D(y)(Pi) = 4]; dsolve([ode,op(ic)],y(t),method='laplace');
ode=D[y[t],{t,2}]+3*D[y[t],t]-2*y[t]==-6*Exp[Pi-t]; ic={y[Pi]==1,Derivative[1][y][Pi]==4}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-2*y(t) + 6*exp(pi - t) + 3*Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {y(pi): 1, Subs(Derivative(y(t), t), t, pi): 4} dsolve(ode,func=y(t),ics=ics)