Internal
problem
ID
[22378]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
27.
Solutions
of
systems
of
linear
differential
equations
with
constant
coefficients
by
Laplace
transform.
Supplementary
problems
Problem
number
:
27.8
Date
solved
:
Thursday, October 02, 2025 at 08:38:04 PM
CAS
classification
:
system_of_ODEs
With initial conditions
ode:=[diff(w(t),t)-w(t)-2*y(t) = 1, diff(y(t),t)-4*w(t)-3*y(t) = -1]; ic:=[y(0) = 2, w(0) = 1]; dsolve([ode,op(ic)]);
ode={D[w[t],t]-w[t]-2*y[t]==1,D[y[t],t]-4*w[t]-3*y[t]==-1}; ic={y[0]==2,w[0]==1}; DSolve[{ode,ic},{y[t],w[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") w = Function("w") ode=[Eq(-w(t) - 2*y(t) + Derivative(w(t), t) - 1,0),Eq(-4*w(t) - 3*y(t) + Derivative(y(t), t) + 1,0)] ics = {y(0): 2, w(0): 1} dsolve(ode,func=[y(t),w(t)],ics=ics)