262. VARIMAX

Vector ARIMA with exogenous regressors

VARIMAX(𝑝,𝑑,𝑞)𝚽(𝐵)(1𝐵)𝑑𝒚𝑡=𝒄+𝑩𝒙𝑡+𝚯(𝐵)𝜺𝑡

𝒚𝑡𝐾 = endogenous vector series
𝒙𝑡𝑘 = exogenous regressor vector
𝑩𝐾×𝑘 = matrix of regression coefficients
Each of the 𝐾 series can depend on the same set of 𝑘 exogenous variables.

Parameters: 𝚽1,,𝚽𝑝, 𝚯1,,𝚯𝑞, 𝑩 (𝐾×𝑘), 𝒄, 𝚺
Orders: 𝑝, 𝑑, 𝑞, 𝐾, 𝑘 (regressors)

Example: VARIMAX(1,0,1), 𝐾=2, 𝑘=1

Given

  • Orders: 𝑝=1, 𝑑=0, 𝑞=1, 𝐾=2, 𝑘=1 (one exog)
  • Coefficient matrices:

    𝚽1=[0.40.20.20.4]𝚯1=[0.40.20.20.4]𝑩=[0.50.5]
  • Intercept: 𝒄=[00]
  • Initial conditions: 𝒚0=[00], 𝜺0=[00]
  • Endogenous 𝒚𝑡=[𝑦1,𝑡𝑦2,𝑡]:
𝑡12345678910111213141516
y_(1\,)𝑡121081114129131614111518161317
𝑡12345678910111213141516
y_(2\,)𝑡89761011981213111014151312
  • Exogenous 𝑧𝑡:
𝑡12345678910111213141516
z𝑡12345678910111213141516

Step 1 — formula

Substitute orders into the VARIMAX recursion (with 𝑑=0, no differencing):

(𝑰𝚽1𝐵)𝒚𝑡=𝒄+𝑩𝑧𝑡+(𝑰+𝚯1𝐵)𝜺𝑡

Forecast (set 𝜺𝑡=𝟎):

𝒚̂𝑡=𝒄+𝚽1𝒚𝑡1+𝑩𝑧𝑡+𝚯1𝜺𝑡1

Three contributions: AR product, exogenous regression 𝑩𝑧𝑡, MA product.

Componentwise:

𝑦̂1,𝑡=𝑐1+0.4𝑦1,𝑡1+0.2𝑦2,𝑡1+0.5𝑧𝑡+0.4𝜀1,𝑡1+0.2𝜀2,𝑡1𝑦̂2,𝑡=𝑐2+0.2𝑦1,𝑡1+0.4𝑦2,𝑡1+0.5𝑧𝑡+0.2𝜀1,𝑡1+0.4𝜀2,𝑡1

Innovation:

𝜺𝑡=𝒚𝑡𝒚̂𝑡

Step 2 — apply at 𝑡=2

Compute the three contributions separately, then sum.

AR part: 𝚽1𝒚1=𝚽1[128]=[0.4(12)+0.2(8)0.2(12)+0.4(8)]=[6.45.6]

Exog part: 𝑩𝑧2=[0.50.5]2=[11]

MA part: 𝚯1𝜺1. With 𝜺0=𝟎, the 𝑡=1 step gives 𝒚̂1=𝑩𝑧1=[0.50.5] and 𝜺1=[128][0.50.5]=[11.57.5].

𝚯1𝜺1=[0.4(11.5)+0.2(7.5)0.2(11.5)+0.4(7.5)]=[6.15.3]

Sum: 𝒚̂2=[6.45.6]+[11]+[6.15.3]=[13.511.9]

𝜺2=[109][13.511.9]=[3.52.9]

Step 3 — iterate

Three contributions per row: AR 𝚽1𝒚𝑡1, exog 𝑩𝑧𝑡, MA 𝚯1𝜺𝑡1. Values rounded to 4 decimal places.

𝑡𝒚𝑡𝚽1𝒚𝑡1𝑩𝑧𝑡𝚯1𝜺𝑡1𝒚̂𝑡 / 𝜺𝑡
1[128][00][0.50.5][00][0.50.5] / [11.57.5]
2[109][6.45.6][11][6.15.3][13.511.9] / [3.52.9]
3[87][5.85.6][1.51.5][1.981.86][5.325.24] / [2.681.76]
4[116][4.64.4][22][1.4241.24][8.0247.64] / [2.9761.64]
5[1410][5.64.6][2.52.5][0.86240.0608][8.96247.0392] / [5.03762.9608]
6[1211][7.66.8][33][2.60722.1918][13.207211.9918] / [1.20720.9918]
7[99][76.8][3.53.5][0.68120.6381][9.81889.6619] / [0.81880.6619]
8[138][5.45.4][44][0.45990.4286][8.94018.9714] / [4.05990.9714]
9[1612][6.85.8][4.54.5][1.42970.4234][12.729710.7234] / [3.27031.2766]
10[1413][8.88][55][1.56341.1647][15.363414.1647] / [1.36341.1647]
11[1111][8.28][5.55.5][0.77830.7386][12.921712.7614] / [1.92171.7614]
12[1510][6.66.6][66][1.12091.0889][11.479111.5111] / [3.52091.5111]
13[1814][87][6.56.5][1.08610.0598][15.586113.5598] / [2.41390.4402]
14[1615][109.2][77][1.05360.6589][18.053616.8589] / [2.05361.8589]
15[1313][9.49.2][7.57.5][1.19321.1543][15.706815.5457] / [2.70682.5457]
16[1712][7.87.8][88][1.59191.5597][14.208114.2403] / [2.79192.2403]