Internal
problem
ID
[21044]
Book
:
A
FIRST
COURSE
IN
DIFFERENTIAL
EQUATIONS
FOR
SCIENTISTS
AND
ENGINEERS.
By
Russell
Herman.
University
of
North
Carolina
Wilmington.
LibreText.
compiled
on
06/09/2025
Section
:
Chapter
6,
Linear
systems.
Problems
section
6.9
Problem
number
:
2.d
Date
solved
:
Thursday, October 02, 2025 at 07:01:43 PM
CAS
classification
:
system_of_ODEs
ode:=[diff(x(t),t) = x(t)-y(t), diff(y(t),t) = y(t)]; dsolve(ode);
ode={D[x[t],t]==x[t]-y[t],D[y[t],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(-y(t) + Derivative(y(t), t),0)] ics = {} dsolve(ode,func=[x(t),y(t)],ics=ics)