Internal
problem
ID
[22013]
Book
:
Differential
Equations
By
Kaj
L.
Nielsen.
Second
edition
1966.
Barnes
and
nobel.
66-28306
Section
:
Chapter
IX.
System
of
equations.
Ex.
XVII
at
page
154
Problem
number
:
9
Date
solved
:
Thursday, October 02, 2025 at 08:21:40 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t)+3*x(t)-y(t) = 0, diff(y(t),t)+y(t)-3*x(t) = 0]; dsolve(ode);
ode={D[x[t],t]+3*x[t]-y[t]==0,D[y[t],t]+y[t]-3*x[t]==0}; 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(3*x(t) - y(t) + Derivative(x(t), t),0),Eq(-3*x(t) + y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)