Internal
problem
ID
[22386]
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.5
Date
solved
:
Thursday, October 02, 2025 at 08:38:07 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = y(t), diff(y(t),t) = -9*x(t)+6*y(t)+t]; dsolve(ode);
ode={D[x[t],t]==y[t],D[y[t],t]==-9*x[t]+6*y[t]+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(-y(t) + Derivative(x(t), t),0),Eq(-t + 9*x(t) - 6*y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)