where the
's are a new coordinate system defined in terms of the original coordinate system, the
's. (Note that we are using subscripts,
denotes the second element of the
vector.) The determinant of this matrix
is important because this represents the constant of proportionality between volumes in the old coordinates and in the new coordinates. As a simple example polar coordinates is the transformation
. When we want to perform an integration in cartesian coordinates by transforming into polar coordinates, we write
, the factor of
is precisely the Jacobian. So in general, to convert an integral in the
coordinate system to the
coordinate system we have
where
and
.
In differential equation theory, the Jacobian matrix plays a key role in defining the stability of solutions. As a simple example, consider the matrix ordinary differential equation
where
. Because this is a linear system, the solution will always be a linear combination of exponentials
where
are the eigenvectors and
are the eigenvalues, and
is time, which is positive. Since
, we must have
for the solution to decay to a steady state. If this is violated for any
then that exponential "blows up" as
, since it is an exponential with an ever-increasing postive argument. Note that if the eigenvalues are complex then the imaginary part of the eigenvalue is related to the oscillatory part of the solution.
A
would be called an unstable eigenvalue of the system and also forms part of the vector space called the unstable manifold. Instability is defined as the tendency for a system to shoot away from a certain state when it is slightly disturbed (perturbed) from that state. Stability is the feature of a system to come back to a certain state if it is slightly perturbed from that state.
Stability has important consequences for applications, because it can determine if your chemical/combustion reaction will go out of control, of if the species in your mathematical model go extinct, etc, depending on what the differential equations describe. Whatever your equations describe, knowing if the solutions are stable is pretty important and usually the first step of an analysis. If you have stable solutions, then you can reasonably trust numerics but if you are trying to numerically simulate an unstable solution of an equation, you must be much more careful. In these situations you want to use specialized integration algorithms that preserve certain properties of your solutions, like if it is symplectic. More about this later!
