Internal
problem
ID
[8181]
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
B,
Challenge
Problems.
Page
310
Problem
number
:
3
Date
solved
:
Monday, January 27, 2025 at 03:45:18 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✗ Solution by Maple
dsolve([diff(i(t),t$2)+2*diff(i(t),t)+3*i(t)=piecewise(0<t and t<2*Pi,30,2*Pi<= t and t<= 5*Pi,0,5*Pi<t and t<infinity,10),i(0) = 8, D(i)(0) = 0],i(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.235 (sec). Leaf size: 297
DSolve[{D[i[t],{t,2}]+2*D[i[t],t]+3*i[t]==Piecewise[{{30,0<t<2*Pi},{0,2*Pi<= t <= 5*Pi},{10,5*Pi<t<Infinity}}],{i[0]==8,Derivative[1][i][0]==0}},i[t],t,IncludeSingularSolutions -> True]