When solving nonlinear differential equations, we often use the "Jacobian of the system" to determine if fixed points are stable.
As an example, suppose I have a nonlinear system
$$x_{t} = f(x,y)$$ $$y_{t} = g(x,y)$$
And let $(\alpha,\beta)$ be a fixed point. Then we consider the Jacobina defined as
$$\begin{bmatrix} x_{tx} & x_{ty} \\ y_{ty} & y_{ty} \\ \end{bmatrix}$$
Which is the same as $$\begin{bmatrix} f_{x} & f_{y} \\ g_{y} & g_{y} \\ \end{bmatrix}$$
And then the eigenvalues of this approximation at the fixed points give us the information we need about stability.
Now, what I am confused about is what exactly is happening beneath the hood here. How is the Jacobian, normally defined over a single function, acting here as a linear approximator for a system of functions? Put differently, what's the mathematical intuition behind this form of approximator?
My class has been very handwavy with this.
the critical thing to realize here is that there is an isomorphism between a system of equations and a vector valued function. rather than thinking about two equations, think about
[x_t, y_t] = h([x,y])wherehreturns a two element vector, the first element is the result off(x,y)etc,