Internal
problem
ID
[23749]
Book
:
Ordinary
differential
equations
with
modern
applications.
Ladas,
G.
E.
and
Finizio,
N.
Wadsworth
Publishing.
California.
1978.
ISBN
0-534-00552-7.
QA372.F56
Section
:
Chapter
4.
The
Laplace
transform.
Exercise
at
page
199
Problem
number
:
4
Date
solved
:
Thursday, October 02, 2025 at 09:44:52 PM
CAS
classification
:
[[_linear, `class A`]]
Using Laplace method With initial conditions
ode:=diff(y(t),t)-3*y(t) = 13*cos(2*t); ic:=[y(0) = -1]; dsolve([ode,op(ic)],y(t),method='laplace');
ode=D[y[t],{t,1}]-3*y[t]==13*Cos[2*t]; ic={y[0]==-1}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-3*y(t) - 13*cos(2*t) + Derivative(y(t), t),0) ics = {y(0): -1} dsolve(ode,func=y(t),ics=ics)