State Space Form

From Class Wiki
Revision as of 08:51, 1 September 2010 by Wilspa (talk | contribs)
Jump to navigation Jump to search

In my Signals and Systems II class at University of Idaho, we are learning about the state space form of representing a solution to a LTI differential equation. I'll add more here soon. Consider the differential equation d2ydt2+2xydt+3y=f(t)
or
y¨+2y˙+3y=f(t)
The state of this equation can be described using what is called state space form. State space form gives the blah blah more here.

let x1=y
let x2=y˙
so x˙2=y¨


We can now re-write the equation above to be:
x˙2+2x2+3x1=f(t)
so
x˙2=3x12x2+f(t)
and from the definition above
x˙1=x2


We can take this and put it into matrix form: [x˙1x˙2]=[0132][x1x2]+[01]f(t)
Or, more generally,
x˙=Ax+Bf
This is called the state space representation of the differential equation.

Example coming