State-space representation

From Wikipedia, the free encyclopedia
Revision as of 13:27, 24 June 2025 by imported>OAbot (Open access bot: url-access=subscription updated in citation with #oabot.)
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Short description Script error: No such module "Distinguish".In control engineering and system identification, a state-space representation is a mathematical model of a physical system that uses state variables to track how inputs shape system behavior over time through first-order differential equations or difference equations. These state variables change based on their current values and inputs, while outputs depend on the states and sometimes the inputs too. The state space (also called time-domain approach and equivalent to phase space in certain dynamical systems) is a geometric space where the axes are these state variables, and the system’s state is represented by a state vector.

For linear, time-invariant, and finite-dimensional systems, the equations can be written in matrix form,[1][2] offering a compact alternative to the frequency domain’s Laplace transforms for multiple-input and multiple-output (MIMO) systems. Unlike the frequency domain approach, it works for systems beyond just linear ones with zero initial conditions. This approach turns systems theory into an algebraic framework, making it possible to use Kronecker structures for efficient analysis.

State-space models are applied in fields such as economics,[3] statistics,[4] computer science, electrical engineering,[5] and neuroscience.[6] In econometrics, for example, state-space models can be used to decompose a time series into trend and cycle, compose individual indicators into a composite index,[7] identify turning points of the business cycle, and estimate GDP using latent and unobserved time series.[8][9] Many applications rely on the Kalman Filter or a state observer to produce estimates of the current unknown state variables using their previous observations.[10][11]

State variables

The internal state variables are the smallest possible subset of system variables that can represent the entire state of the system at any given time.[12] The minimum number of state variables required to represent a given system, n, is usually equal to the order of the system's defining differential equation, but not necessarily. If the system is represented in transfer function form, the minimum number of state variables is equal to the order of the transfer function's denominator after it has been reduced to a proper fraction. It is important to understand that converting a state-space realization to a transfer function form may lose some internal information about the system, and may provide a description of a system which is stable, when the state-space realization is unstable at certain points. In electric circuits, the number of state variables is often, though not always, the same as the number of energy storage elements in the circuit such as capacitors and inductors. The state variables defined must be linearly independent, i.e., no state variable can be written as a linear combination of the other state variables, or the system cannot be solved.

Linear systems

File:Typical State Space model.svg
Block diagram representation of the linear state-space equations

The most general state-space representation of a linear system with p inputs, q outputs and n state variables is written in the following form:[13] 𝐱˙(t)=𝐀(t)𝐱(t)+𝐁(t)𝐮(t) 𝐲(t)=𝐂(t)𝐱(t)+𝐃(t)𝐮(t) where: Template:Unbulleted list

In this general formulation, all matrices are allowed to be time-variant (i.e. their elements can depend on time); however, in the common LTI case, matrices will be time invariant. The time variable t can be continuous (e.g. t) or discrete (e.g. t). In the latter case, the time variable k is usually used instead of t. Hybrid systems allow for time domains that have both continuous and discrete parts. Depending on the assumptions made, the state-space model representation can assume the following forms:

System type State-space model
Continuous time-invariant 𝐱˙(t)=𝐀𝐱(t)+𝐁𝐮(t)
𝐲(t)=𝐂𝐱(t)+𝐃𝐮(t)
Continuous time-variant 𝐱˙(t)=𝐀(t)𝐱(t)+𝐁(t)𝐮(t)
𝐲(t)=𝐂(t)𝐱(t)+𝐃(t)𝐮(t)
Explicit discrete time-invariant 𝐱(k+1)=𝐀𝐱(k)+𝐁𝐮(k)
𝐲(k)=𝐂𝐱(k)+𝐃𝐮(k)
Explicit discrete time-variant 𝐱(k+1)=𝐀(k)𝐱(k)+𝐁(k)𝐮(k)
𝐲(k)=𝐂(k)𝐱(k)+𝐃(k)𝐮(k)
Laplace domain of
continuous time-invariant
s𝐗(s)𝐱(0)=𝐀𝐗(s)+𝐁𝐔(s)
𝐘(s)=𝐂𝐗(s)+𝐃𝐔(s)
Z-domain of
discrete time-invariant
z𝐗(z)z𝐱(0)=𝐀𝐗(z)+𝐁𝐔(z)
𝐘(z)=𝐂𝐗(z)+𝐃𝐔(z)

Example: continuous-time LTI case

Stability and natural response characteristics of a continuous-time LTI system (i.e., linear with matrices that are constant with respect to time) can be studied from the eigenvalues of the matrix 𝐀. The stability of a time-invariant state-space model can be determined by looking at the system's transfer function in factored form. It will then look something like this:

𝐆(s)=k(sz1)(sz2)(sz3)(sp1)(sp2)(sp3)(sp4).

The denominator of the transfer function is equal to the characteristic polynomial found by taking the determinant of s𝐈𝐀, λ(s)=|s𝐈𝐀|. The roots of this polynomial (the eigenvalues) are the system transfer function's poles (i.e., the singularities where the transfer function's magnitude is unbounded). These poles can be used to analyze whether the system is asymptotically stable or marginally stable. An alternative approach to determining stability, which does not involve calculating eigenvalues, is to analyze the system's Lyapunov stability.

The zeros found in the numerator of 𝐆(s) can similarly be used to determine whether the system is minimum phase.

The system may still be input–output stable (see BIBO stable) even though it is not internally stable. This may be the case if unstable poles are canceled out by zeros (i.e., if those singularities in the transfer function are removable).

Controllability

Script error: No such module "Labelled list hatnote".

The state controllability condition implies that it is possible – by admissible inputs – to steer the states from any initial value to any final value within some finite time window. A continuous time-invariant linear state-space model is controllable if and only if rank[𝐁𝐀𝐁𝐀2𝐁𝐀n1𝐁]=n, where rank is the number of linearly independent rows in a matrix, and where n is the number of state variables.

Observability

Script error: No such module "Labelled list hatnote".

Observability is a measure for how well internal states of a system can be inferred by knowledge of its external outputs. The observability and controllability of a system are mathematical duals (i.e., as controllability provides that an input is available that brings any initial state to any desired final state, observability provides that knowing an output trajectory provides enough information to predict the initial state of the system).

A continuous time-invariant linear state-space model is observable if and only if rank[𝐂𝐂𝐀𝐂𝐀n1]=n.

Transfer function

The "transfer function" of a continuous time-invariant linear state-space model can be derived in the following way:

First, taking the Laplace transform of 𝐱˙(t)=𝐀𝐱(t)+𝐁𝐮(t)

yields s𝐗(s)𝐱(0)=𝐀𝐗(s)+𝐁𝐔(s). Next, we simplify for 𝐗(s), giving (s𝐈𝐀)𝐗(s)=𝐱(0)+𝐁𝐔(s) and thus 𝐗(s)=(s𝐈𝐀)1𝐱(0)+(s𝐈𝐀)1𝐁𝐔(s).

Substituting for 𝐗(s) in the output equation

𝐘(s)=𝐂𝐗(s)+𝐃𝐔(s), giving 𝐘(s)=𝐂((s𝐈𝐀)1𝐱(0)+(s𝐈𝐀)1𝐁𝐔(s))+𝐃𝐔(s).

Assuming zero initial conditions 𝐱(0)=𝟎 and a single-input single-output (SISO) system, the transfer function is defined as the ratio of output and input G(s)=Y(s)/U(s). For a multiple-input multiple-output (MIMO) system, however, this ratio is not defined. Therefore, assuming zero initial conditions, the transfer function matrix is derived from 𝐘(s)=𝐆(s)𝐔(s)

using the method of equating the coefficients which yields

𝐆(s)=𝐂(s𝐈𝐀)1𝐁+𝐃.

Consequently, 𝐆(s) is a matrix with the dimension q×p which contains transfer functions for each input output combination. Due to the simplicity of this matrix notation, the state-space representation is commonly used for multiple-input, multiple-output systems. The Rosenbrock system matrix provides a bridge between the state-space representation and its transfer function.

Canonical realizations

Script error: No such module "Labelled list hatnote".

Any given transfer function which is strictly proper can easily be transferred into state-space by the following approach (this example is for a 4-dimensional, single-input, single-output system):

Given a transfer function, expand it to reveal all coefficients in both the numerator and denominator. This should result in the following form: 𝐆(s)=n1s3+n2s2+n3s+n4s4+d1s3+d2s2+d3s+d4.

The coefficients can now be inserted directly into the state-space model by the following approach: 𝐱˙(t)=[010000100001d4d3d2d1]𝐱(t)+[0001]𝐮(t)

𝐲(t)=[n4n3n2n1]𝐱(t).

This state-space realization is called controllable canonical form because the resulting model is guaranteed to be controllable (i.e., because the control enters a chain of integrators, it has the ability to move every state).

The transfer function coefficients can also be used to construct another type of canonical form 𝐱˙(t)=[000d4100d3010d2001d1]𝐱(t)+[n4n3n2n1]𝐮(t)𝐲(t)=[0001]𝐱(t).

This state-space realization is called observable canonical form because the resulting model is guaranteed to be observable (i.e., because the output exits from a chain of integrators, every state has an effect on the output).

Proper transfer functions

Transfer functions which are only proper (and not strictly proper) can also be realised quite easily. The trick here is to separate the transfer function into two parts: a strictly proper part and a constant. 𝐆(s)=𝐆SP(s)+𝐆().

The strictly proper transfer function can then be transformed into a canonical state-space realization using techniques shown above. The state-space realization of the constant is trivially 𝐲(t)=𝐆()𝐮(t). Together we then get a state-space realization with matrices A, B and C determined by the strictly proper part, and matrix D determined by the constant.

Here is an example to clear things up a bit: 𝐆(s)=s2+3s+3s2+2s+1=s+2s2+2s+1+1 which yields the following controllable realization 𝐱˙(t)=[2110]𝐱(t)+[10]𝐮(t)𝐲(t)=[12]𝐱(t)+[1]𝐮(t) Notice how the output also depends directly on the input. This is due to the 𝐆() constant in the transfer function.

Feedback

File:Typical State Space model with feedback.svg
Typical state-space model with feedback

A common method for feedback is to multiply the output by a matrix K and setting this as the input to the system: 𝐮(t)=K𝐲(t). Since the values of K are unrestricted the values can easily be negated for negative feedback. The presence of a negative sign (the common notation) is merely a notational one and its absence has no impact on the end results.

𝐱˙(t)=A𝐱(t)+B𝐮(t) 𝐲(t)=C𝐱(t)+D𝐮(t)

becomes

𝐱˙(t)=A𝐱(t)+BK𝐲(t) 𝐲(t)=C𝐱(t)+DK𝐲(t)

solving the output equation for 𝐲(t) and substituting in the state equation results in

𝐱˙(t)=(A+BK(IDK)1C)𝐱(t) 𝐲(t)=(IDK)1C𝐱(t)

The advantage of this is that the eigenvalues of A can be controlled by setting K appropriately through eigendecomposition of (A+BK(IDK)1C). This assumes that the closed-loop system is controllable or that the unstable eigenvalues of A can be made stable through appropriate choice of K.

Example

For a strictly proper system D equals zero. Another fairly common situation is when all states are outputs, i.e. y = x, which yields C = I, the identity matrix. This would then result in the simpler equations

𝐱˙(t)=(A+BK)𝐱(t) 𝐲(t)=𝐱(t)

This reduces the necessary eigendecomposition to just A+BK.

Feedback with setpoint (reference) input

File:Typical State Space model with feedback and input.png
Output feedback with set point

In addition to feedback, an input, r(t), can be added such that 𝐮(t)=K𝐲(t)+𝐫(t).

𝐱˙(t)=A𝐱(t)+B𝐮(t) 𝐲(t)=C𝐱(t)+D𝐮(t)

becomes

𝐱˙(t)=A𝐱(t)BK𝐲(t)+B𝐫(t) 𝐲(t)=C𝐱(t)DK𝐲(t)+D𝐫(t)

solving the output equation for 𝐲(t) and substituting in the state equation results in

𝐱˙(t)=(ABK(I+DK)1C)𝐱(t)+B(IK(I+DK)1D)𝐫(t) 𝐲(t)=(I+DK)1C𝐱(t)+(I+DK)1D𝐫(t)

One fairly common simplification to this system is removing D, which reduces the equations to

𝐱˙(t)=(ABKC)𝐱(t)+B𝐫(t) 𝐲(t)=C𝐱(t)

Moving object example

A classical linear system is that of one-dimensional movement of an object (e.g., a cart). Newton's laws of motion for an object moving horizontally on a plane and attached to a wall with a spring:

my¨(t)=u(t)by˙(t)ky(t)

where

  • y(t) is position; y˙(t) is velocity; y¨(t) is acceleration
  • u(t) is an applied force
  • b is the viscous friction coefficient
  • k is the spring constant
  • m is the mass of the object

The state equation would then become

[𝐱˙1(t)𝐱˙2(t)]=[01kmbm][𝐱1(t)𝐱2(t)]+[01m]𝐮(t) 𝐲(t)=[10][x𝟏(t)x𝟐(t)]

where

  • x1(t) represents the position of the object
  • x2(t)=x˙1(t) is the velocity of the object
  • x˙2(t)=x¨1(t) is the acceleration of the object
  • the output 𝐲(t) is the position of the object

The controllability test is then

[BAB]=[[01m][01kmbm][01m]]=[01m1mbm2]

which has full rank for all b and m. This means, that if initial state of the system is known (y(t), y˙(t), y¨(t)), and if the b and m are constants, then there is a force u that could move the cart into any other position in the system.

The observability test is then

[CCA]=[[10][10][01kmbm]]=[1001]

which also has full rank. Therefore, this system is both controllable and observable.

Nonlinear systems

The more general form of a state-space model can be written as two functions.

𝐱˙(t)=𝐟(t,x(t),u(t)) 𝐲(t)=𝐡(t,x(t),u(t))

The first is the state equation and the latter is the output equation. If the function f(,,) is a linear combination of states and inputs then the equations can be written in matrix notation like above. The u(t) argument to the functions can be dropped if the system is unforced (i.e., it has no inputs).

Pendulum example

A classic nonlinear system is a simple unforced pendulum

m2θ¨(t)=mgsinθ(t)kθ˙(t)

where

  • θ(t) is the angle of the pendulum with respect to the direction of gravity
  • m is the mass of the pendulum (pendulum rod's mass is assumed to be zero)
  • g is the gravitational acceleration
  • k is coefficient of friction at the pivot point
  • is the radius of the pendulum (to the center of gravity of the mass m)

The state equations are then

x˙1(t)=x2(t) x˙2(t)=gsinx1(t)kmx2(t)

where

  • x1(t)=θ(t) is the angle of the pendulum
  • x2(t)=x˙1(t) is the rotational velocity of the pendulum
  • x˙2=x¨1 is the rotational acceleration of the pendulum

Instead, the state equation can be written in the general form

𝐱˙(t)=[x˙1(t)x˙2(t)]=𝐟(t,x(t))=[x2(t)gsinx1(t)kmx2(t)].

The equilibrium/stationary points of a system are when x˙=0 and so the equilibrium points of a pendulum are those that satisfy

[x1x2]=[nπ0]

for integers n.

See also

Template:Div col

Template:Div col end

References

Template:Reflist

Further reading

Template:Refbegin Template:Div col

  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".

Template:Div col end

On the applications of state-space models in econometrics

Template:Div col

  • Script error: No such module "citation/CS1".

Template:Div col end Template:Refend

External links

Template:Differentiable computing

  1. Script error: No such module "citation/CS1".
  2. Script error: No such module "citation/CS1".
  3. Script error: No such module "citation/CS1".
  4. Script error: No such module "citation/CS1".
  5. Script error: No such module "Citation/CS1".
  6. Script error: No such module "Citation/CS1".
  7. James H. Stock & Mark W. Watson, 1989. "New Indexes of Coincident and Leading Economic Indicators," NBER Chapters, in: NBER Macroeconomics Annual 1989, Volume 4, pages 351-409, National Bureau of Economic Research, Inc.
  8. Script error: No such module "Citation/CS1".
  9. Script error: No such module "citation/CS1".
  10. Script error: No such module "Citation/CS1".
  11. Harvey, Andrew C. (1990). Forecasting, Structural Time Series Models and the Kalman Filter. Cambridge: Cambridge University Press. doi:10.1017/CBO9781107049994
  12. Script error: No such module "citation/CS1".
  13. Script error: No such module "citation/CS1".