L04-2 - Modal Analysis of LTI dynamical Systems - Internal Stability
A = [0,1,0;0,0,0;0,0,-1;]
The eigenvalues of a are [0,0,-1]
We have
and
The sum of the multiplicities must be the size of the matrix A.
Geometric multiplicity is the dimension of the eigenspace.
We define the minimal polynomial of the matrix A,
The characteristic polynomial of A, will be defined as
The roots of
If we have zero real part eigenvalues, if our minimal multiplicity is = 1, we have stability. If multiplicity
An LTI System is internally stable if the zero-input state response
An LTI system is internally stable if and only if all the natural modes are bounded.
An LTI system is internally stable if and only if all the system eigenvalues have non-positive real part and the ones with null real part have unitary(
Unitary - equal to 1(one unit)
An LTI system is asymptotically stable if and only if:
The zero-input state response
or
all its natural modes are convergent
or
all the system eigenvalues have strictly negative real part.
Conversely, an LTI system is unstable if
or
any natural mode diverges
or
In MATLAB we determine minimal multiplicity either explicitly, by computing the matrix
s = tf('s')
zpk(minreal(inv(s*eye(dim(A))-A),1e-3))
Or, we can simply use the command minpoly
. It computes the minimal polynomial of the matrix A.
P = minpoly(A) returns the vector containing the coefficients of the minimal polynomial of the matrix A.
roots(minpoly(A)) - returns roots of minimal polynomial.