Category Archives: Teaching

Control Systems/Poles and Zeros

[source: https://en.wikibooks.org/wiki/Control_Systems/Poles_and_Zeros%5D

This post is to memorize the reason why a system have all the poles with negative parts is stable.

Poles and Zeros

Poles and Zeros of a transfer function are the frequencies for which the value of the denominator and numerator of transfer function becomes zero respectively. The values of the poles and the zeros of a system determine whether the system is stable, and how well the system performs. Control systems, in the most simple sense, can be designed simply by assigning specific values to the poles and zeros of the system.

Physically realizable control systems must have a number of poles greater than or equal to the number of zeros. Systems that satisfy this relationship are called proper. We will elaborate on this below.

Time-Domain Relationships

Let’s say that we have a transfer function with 3 poles:

H(s) = \frac{a}{(s + l)(s + m)(s + n)}

The poles are located at s = –l, –m, –n. Now, we can use partial fraction expansion to separate out the transfer function:

H(s) = \frac{a}{(s + l)(s + m)(s + n)} = \frac{A}{s+l} + \frac{B}{s+m} + \frac{C}{s+n}

Using the inverse transform on each of these component fractions (looking up the transforms in our table), we get the following:

h(t) = Ae^{-lt}u(t) + Be^{-mt}u(t) + Ce^{-nt}u(t)

But, since s is a complex variable, l m and n can all potentially be complex numbers, with a real part (σ) and an imaginary part (jω). If we just look at the first term:

Ae^{-lt}u(t) = Ae^{-(\sigma_l + j\omega_l)t}u(t) = Ae^{-\sigma_l t}e^{-j\omega_l t}u(t)

Using Euler’s Equation on the imaginary exponent, we get:

Ae^{-\sigma_l t}[\cos(\omega_l t) - j\sin(\omega_l t)]u(t)

And taking the real part of this equation, we are left with our final result:

Ae^{-\sigma_l t}\cos(\omega_l t)u(t)

We can see from this equation that every pole will have an exponential part, and a sinusoidal part to its response. We can also go about constructing some rules:

  1. if σl = 0, the response of the pole is a perfect sinusoid (an oscillator)
  2. if ωl = 0, the response of the pole is a perfect exponential.
  3. if σl > 0, the exponential part of the response will decay towards zero.
  4. if σl < 0, the exponential part of the response will rise towards infinity.

From the last two rules, we can see that all poles of the system must have negative real parts, and therefore they must all have the form (s + l) for the system to be stable.