Chapter 3 - Basic concepts - Part B Flashcards
AR(p) is given by :
yt = φ1yt−1 + φ2yt−2 + ··· + φpyt−p + εt, (1) where φ1,φ2,…,φp are unknown parameters, and εt is a standard
white noise process.
MA(q) is given by
yt = εt + θ1εt−1 + … + θqεt−q. where θ1,θ2,…,θq are unknown parameters.
ARMAX( p, q) is given by
yt = α+φ1yt−1 +···+φpyt−p+ εt + θ1εt−1 + … + θqεt−q
(+β1x1,t + β2x2,t + · · · + βkxk,t),
where xi,t, i = 1, . . . , k denote (exogenous) regressors.
How to implement ARMAX models in practice?
We estimate AR(p) with
OLS
We estimate MA(p) with
nonlinear least squares or maximum likelihood.
Remember, b_ols =
see formula slide 6.
Derive the unbiased and the variance of b_OLS and give the assumptions that were made.
E[b_OLS] = B
the diagonal elements of
V[bOLS] = (X′X)−1X′ΩX(X′X)−1
Standard errond of b_OLS are the square roots of
the diagonal elements of
V[bOLS] = (X′X)−1X′ΩX(X′X)−1
If εt is homoskedastic (E[ε2t ] = σ2 for all t) and uncorrelated (E[εtεs] = 0 for all t and s), Ω = σ2I, such that
Then V [bOLS] = σ2(X′X)−1
If εt is heteroskedastic (E[ε2t ] = σt2) and uncorrelated, we have Ω = diag(σ1^2,σ2^2,…,σt^2), such that
see formula slide 9.
What is a difference between the regressors of the classical linear regression model and an AR(p) model
The regressors of AR(p) are stochastic opposed to fixed.
What does it imply when does it imply that regressors are stochastic?
It means that exact finite-sample results which hold in the ‘classical’ linear regression model yt = x′tβ + εt with fixed xt’s do not hold in the time series context.
⇒ Asymptotic results continue to hold, however.
For example, the OLS estimator of φ1 in the AR(1) model yt = φ1yt−1 + εt, is not unbiased but remains consistent.
suppose a series yt is generated from the AR(1) model, yt = φ1yt−1 + εt,
What is the distribution of the OLS estimator of φ1?
See derivation.
√T(^φ1−φ1)∼N(0,σ^2γ0^-1 ) (ASYMPTOTIC relation!!)
Asymptotic approximation.
The exact small-sample distribution can be obtained by means of …..:
a. Monte-carlo simulation
b. see slide 15.