Rahul Sharma (Editor)

Jury stability criterion

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In signal processing and control theory, the Jury stability criterion is a method of determining the stability of a linear discrete time system by analysis of the coefficients of its characteristic polynomial. It is the discrete time analogue of the Routh–Hurwitz stability criterion. The Jury stability criterion requires that the system poles are located inside the unit circle centered at the origin, while the Routh-Hurwitz stability criterion requires that the poles are in the left half of the complex plane. The Jury criterion is named after Eliahu Ibraham Jury.

Contents

Method

If the characteristic polynomial of the system is given by

f ( z ) = a 0 + a 1 z 1 + a 2 z 2 + + a n 1 z n 1 + a n z n

then the table is constructed as follows:

That is, the first row is constructed of the polynomial coefficients in order, and the second row is the first row in reverse order and conjugated.

The third row of the table is calculated by subtracting a n a 0 times the second row from the first row, and the fourth row is the third row with the first n elements reversed (as the final element is zero).

a 0 a 1 a n 1 a n a n a n 1 a 1 a 0 ( a 0 a n a n a 0 ) ( a 1 a n 1 a n a 0 ) ( a n 1 a 1 a n a 0 ) 0 ( a n 1 a 1 a n a 0 ) ( a 1 a n 1 a n a 0 ) ( a 0 a n a n a 0 ) 0

The expansion of the table is continued in this manner until a row containing only one non zero element is reached.

Note the a n a 0 is for the 1st two rows. Then for 3rd and 4th row the coefficient changes (i.e. b n 1 b 0 ) . This can be viewed as the new polynomial which has one less degree and then continuing.

Stability test

If a 0 > 0 then for every value of a 0 , b 0 , c 0 ... that is negative, the polynomial has one root outside of the unit disc. This implies that the method can be stopped after the first negative value is found when checking for stability.

Sample implementation

This method is very easy to implement using dynamic arrays on a computer. It also tells whether all the modulus of the roots (complex and real) lie inside the unit disc. Vector v contains the real coefficients of the original polynomial in the order from highest degree to lowest degree.

References

Jury stability criterion Wikipedia