In this section we conclude our introduction to state space systems by developing a method that can be used to solve any linear time invariant (LTI) system using the state space model. This will put on a formal mathematical footing the approach described in Section 7.3.
To do this we need to derive the Taylor series for the state matrix and then use the results from the previous two lectures to formally derive the state transmission matrix \(\mathbf{\phi}(t)\) from the resolvant matrix
This will lead is to a general solution which we will illustrate with examples and compare with the solution developed in the last section and the solution obtained by inverting the system transfer function. As before, we will refer to MATLAB where relevant.
Once we have completed this material, we will be in a position to move on to look at state-space methods for control system design.
7.6.1. The Matrix Exponential Function
In mathematics, the Taylor series is a representation of a function as an infinite sum of terms calculated from the values of its derivatives at a single point. It is named after the English mathematician Brook Taylor. It is common practice to use a finite number of terms of the series to approximate a function. The Taylor series may be regarded as the limit of the Taylor polynomials.
We use Taylor series to approximate general functions, and here we adapt the Taylor series to discover the form of a function of a matrix.
7.6.1.1. Taylor series
If a function \(f(t)\) has Taylor series:
\[f(t)=f_0 + f_1t + f_2t^2 + \cdots + f_nt^n + \cdots\]
Then the corresponding matrix function is defined as:
\[f(\mathbf{A}t)=f_0\mathbf{I} + f_1\mathbf{A}t + f_2\mathbf{A}^2t^2 + \cdots + f_n\mathbf{A}^nt^n + \cdots\]
7.6.1.3. Transition Matrix
In particular, the solution of:
\[\frac{d\mathbf{x}}{dt}=\mathbf{Ax}\]
given \(\mathbf{x}=\mathbf{x}_0\) at \(t=0\) is:
\[\mathbf{x}=e^{\mathbf{A}t}\mathbf{x}_0\]
The term \(\mathbf{\phi}(t) = e^{\mathbf{A}t}\) is known as the state transition matrix because it shows how time, \(t\), transforms the initial state vector into the present one.
7.6.1.4. Forced solution
Furthermore, the solution of:
\[\frac{d\mathbf{x}}{dt}=\mathbf{Ax} + \mathbf{Bu}\]
given \(\mathbf{x}=\mathbf{x}_0\) at \(t=0\) is:
\[\mathbf{x}=e^{\mathbf{A}t}\mathbf{x}_0 + \int_0^t e^{\mathbf{A}(t-\tau)}\mathbf{Bu}(\tau)d\tau.\]
7.6.1.5. End of Pre-Class Presentation
In the class we will work through a worked example of this approach and contrast it with two alternatives – diagonalization by similarity transform and Laplace.
7.6.2. Example
Find the solution of:
\[\begin{split}\frac{d\mathbf{x}}{dt} = \left[ {\begin{array}{*{20}c}
{ - 3} & { - 2} \\
1 & 0 \\
\end{array}} \right]{\bf{x}} + \left[ {\begin{array}{*{20}c}
1 \\
0 \\
\end{array}} \right]u\end{split}\]
given \(\mathbf{x}_0=[1,\ 1]^T\), and \(u = 1\) for \(t\ge 0\).
Note: The solutions to this example and the remaining alternatives are available in the form of MATLAB scripts and as Pencasts in OneNote.
7.6.2.1. Solution
The state matrix \(\mathbf{A}\) is the same as Example 4 from Section 7.3, so the transformation matrix is:
\[\begin{split}{\bf{T}} = \left[ {\begin{array}{*{20}c}
1 & 1 \\
{ - 1} & { - 0.5} \\
\end{array}} \right]\end{split}\]
with an inverse:
\[\begin{split}{\bf{T}}^{ - 1} = \left[ {\begin{array}{*{20}c}
{ - 1} & { - 2} \\
2 & 2 \\
\end{array}} \right]\end{split}\]
and with corresponding eigenvalues \(\lambda_1=-1\) and \(\lambda_2=-2\).
Therefore the state transition matrix is:
\[\begin{split}\begin{eqnarray*}
\mathbf{\phi}(t) & = & e^{\mathbf{A}t}=\mathbf{T}e^{\mathbf{\Lambda}t}\mathbf{T}^{-1} \\
& = & \left[ {\begin{array}{*{20}c}
1 & 1 \\
{ - 1} & { - 0.5} \\
\end{array}} \right]\left[ {\begin{array}{*{20}c}
{e^{ - t} } & 0 \\
0 & {e^{ - 2t} } \\
\end{array}} \right]\left[ {\begin{array}{*{20}c}
{ - 1} & { - 2} \\
2 & 2 \\
\end{array}} \right] \\
& = & \left[ {\begin{array}{*{20}c}
1 & 1 \\
{ - 1} & { - 0.5} \\
\end{array}} \right]\left[ {\begin{array}{*{20}c}
{-e^{ - t} } & {-2e^{ - t} } \\
{2e^{ - 2t} } & {2e^{ - 2t} } \\
\end{array}} \right] \\
& = & \left[ {\begin{array}{*{20}c}
\left\{ {-e^{ - t} + 2e^{-2t}} \right\} & \left\{ {-2e^{ - t} + 2e^{-2t}} \right\} \\
\left\{ {e^{ - t} - e^{-2t}} \right\} & \left\{ {2e^{ - t} - e^{-2t}} \right\} \\
\end{array}} \right] \\
\end{eqnarray*}\end{split}\]
The solution is:
\[\mathbf{x}(t) = \mathrm{term}_1+\int_0^t\mathrm{term}_2 d\tau.\]
where \(\mathrm{term}_1=\mathbf{\phi}(t)\mathbf{x}_0=e^{\mathbf{A}t}\mathbf{x}_0\).
\[\begin{split}\begin{eqnarray*}
\mathrm{term}_1 & = & \left[ {\begin{array}{*{20}c}
\left\{ {-e^{ - t} + 2e^{-2t}} \right\} & \left\{ {-2e^{ - t} + 2e^{-2t}} \right\} \\
\left\{ {e^{ - t} - e^{-2t}} \right\} & \left\{ {2e^{ - t} - e^{-2t}} \right\} \\
\end{array}} \right] \left[ {\begin{array}{*{20}c}
1 \\
1 \\
\end{array}} \right] \\
& = & \left[ {\begin{array}{*{20}c}
{\left\{ {\left. { - 3e^{ - t} + 4e^{ - 2t} } \right\}} \right.} \\
{\left\{ {\left. {3e^{ - t} - 2e^{ - 2t} } \right\}} \right.} \\
\end{array}} \right]\end{eqnarray*}\end{split}\]
and
\[\begin{split}\begin{eqnarray*}
{\rm{term}}_2 & = & e^{\bf{A}(t - \tau )} {\bf{B}}u = e^{\bf{A}(t - \tau )} \left[ {\begin{array}{*{20}c}
1 \\
0 \\
\end{array}} \right] \times 1 \\
& = & \left[ {\begin{array}{*{20}c}
{\left. {\left\{ { - e^{ - (t - \tau )} + 2e^{ - 2(t - \tau )} } \right.} \right\}} \\
{\left. {\left\{ {e^{ - (t - \tau )} - e^{ - 2(t - \tau )} } \right.} \right\}} \\
\end{array}} \right]\end{eqnarray*}\end{split}\]
\[\begin{split}\begin{eqnarray*}
\int_0^t {\rm{term}_2 d\tau } & = & \left[ {\begin{array}{*{20}c}
{\int_0^t {\left. {\left\{ { - e^{ - (t - \tau )} + 2e^{ - 2(t - \tau )} } \right.} \right\}d\tau } } \\
{\int_0^t {\left. {\left\{ {e^{ - (t - \tau )} - e^{ - 2(t - \tau )} } \right.} \right\}d\tau } } \\
\end{array}} \right] \\
& = &
\left[ {\begin{array}{*{20}c}
{\left. {\left\{ { - e^{ - (t - \tau )} + e^{ - 2(t - \tau )} } \right.} \right\}} \\
{\left. {\left\{ {e^{ - (t - \tau )} - 0.5e^{ - 2(t - \tau )} } \right.} \right\}} \\
\end{array}} \right]_{\tau = 0}^t \\
& = & \left[ {\begin{array}{*{20}c}
{ - 1 + e^{ - t} + 1 - e^{ - 2t} } \\
{ 1 - e^{ - t} - 0.5 + 0.5e^{ - 2t} } \\
\end{array}} \right] \\
& = & \left[ {\begin{array}{*{20}c}
{e^{ - t} - e^{ - 2t} } \\
{0.5 - e^{ - t} + 0.5e^{ - 2t} } \\
\end{array}} \right]\end{eqnarray*}\end{split}\]
Combining \(\mathrm{term}_1\) and \(\int_0^t \mathrm{term}_2 d\tau\) we find the total, forced, response:
\[\begin{split}{\bf{x}}(t) = \left[ {\begin{array}{*{20}c}
{ - 3e^{ - t} + 4e^{ - 2t} } \\
{3e^{ - t} - 2e^{ - 2t} } \\
\end{array}} \right] + \left[ {\begin{array}{*{20}c}
{e^{ - t} - e^{ - 2t} } \\
{0.5 - e^{ - t} + 0.5e^{ - 2t} } \\
\end{array}} \right]\end{split}\]
Therefore:
\[\begin{split}{\bf{x}}(t) = \left[ {\begin{array}{*{20}c}
{ - 2e^{ - t} + 3e^{ - 2t} } \\
{0.5 + 2e^{ - t} - 1.5e^{ - 2t} } \\
\end{array}} \right].\end{split}\]
7.6.2.2. Alternative solution 1
Repeat Example 1 using the transformation to normal canonical form:
\[\frac{d\mathbf{w}}{dt}=\mathbf{\Lambda w}+ \mathbf{T}^{-1}\mathbf{B}u.\]
Using the transformation to normal canonical form:
\[\frac{d\mathbf{w}}{dt}=\mathbf{\Lambda w}+ \mathbf{T}^{-1}\mathbf{B}u\]
\[\begin{split}\frac{d{\bf{w}}}{dt} = \left[ {\begin{array}{*{20}c}
{ - 1} & 0 \\
0 & { - 2} \\
\end{array}} \right]{\bf{w}} + \left[ {\begin{array}{*{20}c}
{ - 1} & { - 2} \\
2 & 2 \\
\end{array}} \right]\left[ {\begin{array}{*{20}c}
1 \\
0 \\
\end{array}} \right]u;\quad u = 1\end{split}\]
\[\frac{dw_1}{dt}=-w_1-1\ \textrm{and}\ \frac{dw_2}{dt}=-2w_2 + 2\]
\[\begin{split}{\bf{w}}_0 = {\bf{T}}^{ - 1} {\bf{x}}_0 = \left[ {\begin{array}{*{20}c}
{ - 1} & { - 2} \\
2 & 2 \\
\end{array}} \right]\left[ {\begin{array}{*{20}c}
1 \\
1 \\
\end{array}} \right] = \left[ {\begin{array}{*{20}c}
{ - 3} \\
4 \\
\end{array}} \right]\end{split}\]
\[\begin{split}\begin{eqnarray*}
w_1 & = & w_{10}e^{-t}-\int_0^t e^{-(t-\tau)} d\tau \\
& = & -3e^{-t}-\left[e^{-(t-\tau)}\right]_0^t \\
& = & -3e^{-t}-\left[1 - e^{-t}\right] \\
& = & -1 -2e^{-t}\end{eqnarray*}\end{split}\]
\[\begin{split}\begin{eqnarray*}
w_2 & = & w_{20}e^{-2t}+2\int_0^t e^{-2(t-\tau)} d\tau \\
& = & 4e^{-2t}+2\left[0.5e^{-2(t-\tau)}\right]_0^t \\
& = & 4e^{-2t}+\left[1 - e^{-2t}\right] \\
& = & 1 + 3e^{-2t}\end{eqnarray*}\end{split}\]
\[\begin{split}{\bf{x}} = {\bf{Tw}} = \left[ {\begin{array}{*{20}c}
1 & 1 \\
{ - 1} & { - 0.5} \\
\end{array}} \right]\left[ {\begin{array}{*{20}c}
{ - 1 - 2e^{ - t} } \\
{1 + 3e^{ - 2t} } \\
\end{array}} \right]\end{split}\]
Therefore
\[\begin{split}{\bf{x}} = \left[ {\begin{array}{*{20}c}
{ - 2e^{ - t} + 3e^{ - 2t} } \\
{0.5 + 2e^{ - t} - 1.5e^{ - 2t} } \\
\end{array}} \right]\end{split}\]
7.6.2.3. Alternative solution 2
Solve the problem of example 1 using the Laplace transform method.
Taking Laplace transforms of the state equations, taking account of the
initial conditions:
\[s\mathbf{X}(s)-\mathbf{x}_0=\mathbf{A}\mathbf{X}(s)+\mathbf{B}U(s)\]
\[\begin{split}(s{\bf{I}} - {\bf{A}}){\bf{X}}(s) = {\bf{x}}_0 + {\bf{B}}U(s) = \left[ {\begin{array}{*{20}c}
1 \\
1 \\
\end{array}} \right] + \left[ {\begin{array}{*{20}c}
1 \\
0 \\
\end{array}} \right]\frac{1}{s}\end{split}\]
Therefore
\[\begin{split}{\bf{X}}(s) = (s{\bf{I}} - {\bf{A}})^{ - 1} \left[ {\begin{array}{*{20}c}
{1 + \frac{1}{s}} \\
1 \\
\end{array}} \right]\end{split}\]
\[\begin{split}{\rm{Now\;}}(s{\bf{I}} - {\bf{A}})^{ - 1} = \left[ {\begin{array}{*{20}c}
{s + 3} & 2 \\
{ - 1} & s \\
\end{array}} \right]^{ - 1} = \frac{1}{(s + 3)(s + 2)}\left[ {\begin{array}{*{20}c}
s & { - 2} \\
1 & {s + 3} \\
\end{array}} \right]\end{split}\]
Therefore
\[\begin{split}\begin{eqnarray*}
{\bf{X}}(s) & = & \frac{1}{s^2 + 3s + 2}\left[ {\begin{array}{*{20}c}
s & { - 2} \\
1 & {s + 3} \\
\end{array}} \right]\left[ {\begin{array}{*{20}c}
{1 + \frac{1}{s}} \\
1 \\
\end{array}} \right] \\
& = & \frac{1}{(s + 1)(s + 2)}\left[ {\begin{array}{*{20}c}
{s - 1} \\
{\frac{s^2 + 4s + 1}{s}} \\
\end{array}} \right] \\
& = & \left[ {\begin{array}{*{20}c}
{\frac{s - 1}{(s + 1)(s + 2)}} \\
{\frac{s^2 + 4s + 1}{s(s + 1)(s + 2)}} \\
\end{array}} \right]\end{eqnarray*}\end{split}\]
Taking partial fractions:
\[\begin{split}{\bf{X}}(s) = \left[ {\begin{array}{*{20}c}
{\frac{ - 2}{s + 1} + \frac{3}{s + 2}} \\
{\frac{0.5}{s} + \frac{2}{s + 1} + \frac{ - 1.5}{s + 2}} \\
\end{array}} \right]\end{split}\]
Finally, taking inverse Laplace transforms:
\[\begin{split}{\bf{x}}(t) = \left[ {\begin{array}{*{20}c}
{ - 2e^{ - t} + 3e^{ - 2t} } \\
{0.5 + 2e^{ - t} - 1.5e^{ - 2t} } \\
\end{array}} \right]\end{split}\]