0

Why are we using ARMA model that mixes AR and MA model. Isn't AR or MA sufficient?

I know that AR model is a function of previous readings and MA model is a function of previous errors, also know that identifying AR model is best done with PACF and know that identifying MA model is best done with ACF (and identifing AR model is best done with PACF)... But what is the intiuition behind using mixed model between the two

Chaymae Ahmed
  • 371
  • 1
  • 4
  • 14

1 Answers1

0

Short answer: The AR shows how the variable evolved with time, the MA makes the forecast error diminish with time.

It assumes :

  • AR: xt depends linearly of xt-1, xt-2,...xt-p, where xt is the variable of interest.

  • AM: εt depends linearly of xt-1, εt-1, εt-2,...εt-q, where εt is the error.

AR is a characteristic of the model, AM a characteristic of the error.

AlainD
  • 6,187
  • 3
  • 17
  • 31