Mathematical representation of a particular state space model
Posted: Wed Aug 06, 2025 6:27 pm
Hello,
I am working with the following state space model and would like to confirm my understanding of how EViews interprets the error structure.
Here is the model specified in the sspace object:
Using the notation from the EViews User Guide II on State Space Models, my interpretation is as follows:
Signal Error Covariance (2x2, H matrix): Since the same named error E1 is used in both signal equations, the resulting H matrix is singular, with all of its elements being equal to 192*EXP(C(1)). Is this correct?
State Error Covariance (2x2, Q matrix): Since SV1 is a random walk with variance EXP(C(1)) and the implicit state for the coefficient C(3) is deterministic, the Q matrix for the state disturbances is effectively [EXP(C(1))] for the SV1 state, and zero for any other states. Is this logic correct?
Cross-Covariance (G matrix): This is my main question. Because the same parameter, C(1), is used to define the variance of a state disturbance (SV1) and the observation disturbance (E1), does EViews interpret this as a correlation between the two? In other words, does this specific syntax result in a non-zero cross-covariance matrix G (between the state and signal errors)?
I am working with the following state space model and would like to confirm my understanding of how EViews interprets the error structure.
Here is the model specified in the sspace object:
Code: Select all
depvar1 = SV1 + [ENAME=E1, VAR=192*EXP(C(1))]
depvar2 = C(3)*depvar2(-1) + E1
@STATE SV1= SV1(-1) + [VAR=EXP(C(1))]Signal Error Covariance (2x2, H matrix): Since the same named error E1 is used in both signal equations, the resulting H matrix is singular, with all of its elements being equal to 192*EXP(C(1)). Is this correct?
State Error Covariance (2x2, Q matrix): Since SV1 is a random walk with variance EXP(C(1)) and the implicit state for the coefficient C(3) is deterministic, the Q matrix for the state disturbances is effectively [EXP(C(1))] for the SV1 state, and zero for any other states. Is this logic correct?
Cross-Covariance (G matrix): This is my main question. Because the same parameter, C(1), is used to define the variance of a state disturbance (SV1) and the observation disturbance (E1), does EViews interpret this as a correlation between the two? In other words, does this specific syntax result in a non-zero cross-covariance matrix G (between the state and signal errors)?