Internal
problem
ID
[22379]
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.9
Date
solved
:
Thursday, October 02, 2025 at 08:38:04 PM
CAS
classification
:
system_of_ODEs
With initial conditions
ode:=[diff(w(t),t)-y(t) = 0, w(t)+diff(y(t),t)+z(t) = 1, w(t)-y(t)+diff(z(t),t) = 2*sin(t)]; ic:=[y(0) = 1, w(0) = 1, z(0) = 1]; dsolve([ode,op(ic)]);
ode={D[w[t],t]-y[t]==0,w[t]+D[y[t],t]+z[t]==1,w[t]-y[t]+D[z[t],t]==2*Sin[t]}; ic={y[0]==1,w[0]==1,z[0]==1}; DSolve[{ode,ic},{y[t],w[t],z[t]},t,IncludeSingularSolutions->True]
Too large to display
from sympy import * t = symbols("t") y = Function("y") w = Function("w") z = Function("z") ode=[Eq(-y(t) + Derivative(w(t), t),0),Eq(w(t) + z(t) + Derivative(y(t), t) - 1,0),Eq(w(t) - y(t) - 2*sin(t) + Derivative(z(t), t),0)] ics = {y(0): 1, w(0): 1, z(0): 1} dsolve(ode,func=[y(t),w(t),z(t)],ics=ics)
OverflowError : mpz too large to convert to float