ARMA Models Flashcards

1
Q

AR model

A

Expresses the current value of a time series as a linear combination of its past values and a random error term.
For an AR model of order p (AR(p)):
* Xt = ϕ1Xt-1 + ϕ2Xt-2 + … + ϕpXt-p + ϵt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Explanation of MA model

A

Relates the current value of a time series to past forecast errors (residuals)
For an MA model of order q (MA(q)):
* Xt = μ + θ1ϵt-1 + θ2ϵt-2 + θqϵt-q + ϵt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

ARMA(p,q)

A

Combines AR(p) and MA(q) components
* Xt = ϕ1Xt-1 + ϕ2Xt-2 + … + ϕpXt-p + θ1ϵt-1 + θ2ϵt-2 + … + θqϵt-q + ϵt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Behaviour based on ϕ1

A
  • ϕ1 = 0: no relationship; purely random process
  • 1| < 1: stationary process; shocks decay over time
  • ϕ1 = 1: non-stationary process (random walk)
  • 1| > 1: Explosive process; values grow without bound
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Behaviour based on θ1

A
  • θ1 = 0: no memory of past errors
  • θ1 != 0: memory of past errors influences the current value
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

AR Stationarity Conditions

A

the roots of the characteristic equation lie outside the unit circle
* |ϕ1| < 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Patterns for model identification

A
  • AR(p) Process: PACF cuts off after lag p, ACF decays gradually
  • MA(q) Process: ACF cuts off after lag q, PACF decays gradually
  • ARMA(p,q) Process: ACF and PACF both decay gradually
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

MA Stationarity Conditions

A

Always stationarity because it depends on a finite number of past errors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Box-Ljung Test

A

Tests if residual autocorrelations are statistically significant
* Null Hypothesis H0: Residuals are uncorrelated (white noise)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Box-Jenkins Approach

A
  • Model identification
  • Parameter estimation
  • Model diagnostics
  • Forecasting
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Akaike Information Criterion (AIC)

A

Measures the relative quality of a statistical model for a given dataset by penalizing poor model fit ( -2ln(L) ) and number of parameters ( 2k )
* AIC = -2ln(L) + 2k
* Lower AIC is better
* Useful when comparing models with the same data but different numbers of parameters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Bayesian Information Criterion (BIC)

A

Similar to AIC but includes a stronger penalty for model complexity (parameters)
* BIC = -2ln(L) + kln(n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly