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