Internal
problem
ID
[22388]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
31.
Solutions
of
linear
systems
with
constant
coefficients.
Solved
problems.
Page
194
Problem
number
:
31.7
Date
solved
:
Thursday, October 02, 2025 at 08:38:09 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = x(t)+y(t), diff(y(t),t) = 9*x(t)+y(t)]; dsolve(ode);
ode={D[x[t],t]==x[t]+y[t],D[y[t],t]==9*x[t]+y[t]}; ic={}; DSolve[{ode,ic},{x[t],y[t]},t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") y = Function("y") ode=[Eq(-x(t) - y(t) + Derivative(x(t), t),0),Eq(-9*x(t) - y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)