Jury stability criterion

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.

Method edit

If the characteristic polynomial of the system is given by

 

then the table is constructed as follows:[1]

row zn zn−1 zn−2 z.... z1 z0
1 a0 a1 a2 ... an−1 an
2 an an−1 an−2 ... a1 a0
3 b0 b1 ... bn−2 bn−1
4 bn−1 bn−2 ... b1 b0
5 c0 c1 ... cn−2
6 cn−2 cn−3 ... c0
... ... ... ... ... ... ...
2n−5 p0 p1 p2 p3
2n−4 p3 p2 p1 p0
2n−3 q2 q1 q0

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   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).

 

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

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

Stability test edit

If   then for every value of  ... 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 edit

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. The vector v contains the real coefficients of the original polynomial in the order from highest degree to lowest degree.

        /* vvd is the jury array */
        vvd.push_back(v); // Store the first row
        reverse(v.begin(),v.end());
        vvd.push_back(v); // Store the second row

        for (i=2;;i+=2)
        {
            v.clear();
            double mult = vvd[i-2][vvd[i-2].size()-1]/vvd[i-2][0]; // This is an/a0 as mentioned in the article.

            for (j=0; j<vvd[i-2].size()-1; j++) // Take the last 2 rows and compute the next row
                   v.push_back(vvd[i-2][j] - vvd[i-1][j] * mult);

            vvd.push_back(v);
            reverse(v.begin(), v.end()); // reverse the next row
            vvd.push_back(v);
            if (v.size() == 1) break;
         }

         // Check is done using
         for (i=0; i<vvd.size(); i+=2)
         {
              if (vvd[i][0]<=0) break;
         }

         if (i == vvd.size())
              "All roots lie inside unit disc "
         else
              "no"

See also edit

References edit

  1. ^ Discrete-time control systems (2nd ed.), pg. 185. Prentice-Hall, Inc. Upper Saddle River, NJ, USA ©1995 ISBN 0-13-034281-5

For more details please check these references:

For advanced resources:

For implementations: