Autoregressive fractionally integrated moving average

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found. In statistics, autoregressive fractionally integrated moving average models are time series models that generalize ARIMA (autoregressive integrated moving average) models by allowing non-integer values of the differencing parameter. These models are useful in modeling time series with long memory—that is, in which deviations from the long-run mean decay more slowly than an exponential decay. The acronyms "ARFIMA" or "FARIMA" are often used, although it is also conventional to simply extend the "ARIMA(p,d,q)" notation for models, by simply allowing the order of differencing, d, to take fractional values.

Basics

In an ARIMA model, the integrated part of the model includes the differencing operator (1 − B) (where B is the backshift operator) raised to an integer power. For example

(1-B)^2=1-2B+B^2 \,,

where

B^2X_t=X_{t-2} \, ,

so that

(1-B)^2X_t = X_t -2X_{t-1} + X_{t-2}.

In a fractional model, the power is allowed to be fractional, with the meaning of the term identified using the following formal binomial series expansion

Failed to parse (Missing <code>texvc</code> executable. Please see math/README to configure.): \begin{align} (1 - B)^d &= \sum_{k=0}^{\infty} \; {d \choose k} \; (-B)^k \\ & = \sum_{k=0}^{\infty} \; \frac{\prod_{a=0}^{k-1} (d - a)\ (-B)^k}{k!}\\ &=1-dB+\frac{d(d-1)}{2!}B^2 -\cdots \, . \end{align}


ARFIMA(0,d,0)

The simplest autoregressive fractionally integrated model, ARFIMA(0,d,0), is, in standard notation,

 (1 - B)^d X_t= \varepsilon_t,

where this has the interpretation

 X_t-dX_{t-1}+\frac{d(d-1)}{2!}X_{t-2} -\cdots = \varepsilon_t .

ARFIMA(0,d,0) is similar to fractional Gaussian noise (fGn): with d = H−½, their covariances have the same power-law decay. The advantage of fGn over ARFIMA(0,d,0) is that many asymptotic relations hold for finite samples.[1] The advantage of ARFIMA(0,d,0) over fGn is that it has an especially simple spectral density

f(λ) = (1/2π) (2sin(λ/2))−2d

—and it is a particular case of ARFIMA(p,d,q), which is a versatile family of models.[1]

General form: ARFIMA(p,d,q)

An ARFIMA model shares the same form of representation as the ARIMA(p,d,q) process, specifically:


\left(
  1 - \sum_{i=1}^p \phi_i B^i
\right)
\left(
  1-B
\right)^d
X_t
=
\left(
  1 + \sum_{i=1}^q \theta_i B^i
\right) \varepsilon_t \, .

In contrast to the ordinary ARIMA process, the "difference parameter", d, is allowed to take non-integer values.

See also

Notes

  1. 1.0 1.1 Lua error in package.lua at line 80: module 'strict' not found.

References

  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.