0

How to represent it as a matrix?

\begin{align} \dfrac{dx}{dt}&=4x+4y-24, \\ \dfrac{dy}{dt}&=-8x+16y+60. \end{align}

Or, at least, how to represent a single equation:

\begin{align} \dfrac{dx}{dt}&=4x+4y-24, \end{align}

?

Stdugnd4ikbd
  • 205
  • 1
  • 8

2 Answers2

2

$$\begin{pmatrix}\dot x\\\dot y\end{pmatrix}=\begin{pmatrix}4&4\\-8&16\end{pmatrix}\begin{pmatrix}x\\ y\end{pmatrix}+\begin{pmatrix}-24\\60\end{pmatrix}$$

Surb
  • 55,662
1

It is a non-homogeneous linear system:

$$\begin{pmatrix}\dot x\\ \dot y\end{pmatrix}=\begin{pmatrix}4&4\\ -8&16\end{pmatrix}\begin{pmatrix} x\\ y\end{pmatrix}+\begin{pmatrix}-24\\ 60\end{pmatrix}.$$

Bernard
  • 175,478
  • If I want to get the eigenvalues of this system to determine type of the singularity point, considering the fact, that this system is a linearization of nonlinear system, near some point, what I have to do? – Stdugnd4ikbd Feb 19 '19 at 18:20