1.7 How to check that state space system x=Ax+Bu is controllable?

A system described by

x=Ax+Buy=Cx+Du

Is controllable if for any initial state x0 and any final state xf there exist an input u which moves the system from x0 to xf in finite time. Only the matrix A and B are needed to decide on controllability. If the rank of

[BABA2BAn1B]

is n which is the number of states, then the system is controllable. Given the matrix

A=(0100001000010050)

And

B=(0102)

Mathematica

A0 = {{0, 1, 0, 0}, 
      {0, 0, -1, 0}, 
      {0, 0, 0, 1}, 
      {0, 0, 5, 0}}; 
B0 = {{0}, {1}, {0}, {-2}}; 
sys = StateSpaceModel[{A0, B0}]; 
m = ControllabilityMatrix[sys]
 

(010210200201020100)
ControllableModelQ[sys]
 

True

MatrixRank[m]
 

4

 

Matlab

A0 = [0 1 0 0; 
      0 0 -1 0; 
      0 0 0 1; 
      0 0 5 0]; 
B0 = [0 1 0 -2]'; 
sys = ss(A0,B0,[],[]); 
m   = ctrb(sys)
 

m = 
     0     1     0     2 
     1     0     2     0 
     0    -2     0   -10 
    -2     0   -10     0
 

rank(m)
 

4

 

Maple

restart: 
alias(DS=DynamicSystems): 
A:=Matrix( [ [0,1,0,0], 
             [0,0,-1,0], 
             [0,0,0,1], 
             [0,0,5,0] 
           ] 
          ); 
B:=Matrix([[0],[1],[0],[-2]]); 
sys:=DS:-StateSpace(A,B); 
m:=DS:-ControllabilityMatrix(sys);
 

[010210200201020100]
DS:-Controllable(sys,method=rank);
 

true

DS:-Controllable(sys,method=staircase);
 

true

LinearAlgebra:-Rank(m);
 

4