[Math] Control theory: what is an unstable pole

control theorylinear-controloptimal controlreference-requestterminology

Can someone provide a definition of unstable pole as appears in control
theory?

I wish to know if the definition of an unstable pole include the case when the pole is at origin i.e. $s = 0$

Multiple references exist for so called "unstable pole", which is a common term thrown around in control

  1. https://en.wikipedia.org/wiki/Nyquist_stability_criterion

  2. https://arxiv.org/pdf/1207.6962v1.pdf

  3. http://wolfweb.unr.edu/~fadali/ee472/FiniteSettlingDesign.pdf

  4. http://www.mathworks.com/help/mpc/ug/explicit-mpc-control-of-an-aircraft-with-unstable-poles.html

  5. http://www.phoneoximeter.org/uploads/media/EECE460_Fundamental_Limitations_01.pdf

But there is not a single definition for this term.

Sometimes the author uses "right half plane pole" in place of unstable pole. But what is a right half plane? Does it include the imaginary axis or not?

Best Answer

First, consider the following first order transfer function:

$$ \frac{X(s)}{U(s)} = \frac{a}{s - a} $$

where $a \in \mathbb{C}$ is the system pole. If we observe the behavior of the system in time we have

$$ \dot{x}(t) = e^{a t} (u(t) - x(t))$$

Since $ a $ is complex we can write it as $ a = b + j c $ where $ b $ is the real part of $ a $ and $ c $ the imaginary part. Then the system becomes:

$$ \dot{x}(t) = e^{b t} e^{j c t} (u(t) - x(t))$$

Note that $ e^{j c t} $ will cause the system to oscillate, while $ e^{b t} $ will determine how (and if) the $x$ will converge to $u$.

If $ b < 0 $ the system will go to zero since $ e^{b t} \rightarrow 0 $ when $ t \rightarrow \infty $. Meanwhile, if $ b > 0 $ the system will diverge since $ e^{b t} \rightarrow \infty $ when $ t \rightarrow \infty $.

Note that $ c $ does not play a role here. So independently of the imaginary part, the real part of the pole needs to be negative for stability.

For the case $ b = 0 $ the system will neither converge nor diverge, however stability is defined by strict convergence, so $ b = 0 $ is not stable (attention to the choice of words, it may or may not be unstable, I recommend you to read more on marginal stability for this).

Related Question