You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with $e(t) \sim wn(0,\lambda ^2)$ .
Where $n$ is the order of the process and $e(t)\sim WN(0,\lambda^2)$.
Covariance function with $n=1$ (case of $AR(1)){:}$
$$\begin{cases}\frac{1}{1-a^2}\lambda^2&\tau=0\\ \gamma(\tau)=a\gamma(\tau-1)&|\tau|>0\end{cases}$$
well defined if $|a|<1$.
If $|a| > 1$, the system generates a process with variance $\gamma(0) \rightarrow \infty$ .
The $MA(\infty)$ representation of an AR process refers to representing an autoregressive process as an infinite moving average MA process. performing the recursion.
The intuition behind this representation is that an AR process relies on its past values which, in turn, also depend on their own past values, and so on. If you keep substituting back these dependencies, you end up with a representation that expresses the current value of the process as the sum of the effects of all past and current shock terms $\epsilon_t$, each weighted by a $\psi_i$ coefficient.
The $MA(\infty)$ representation is mainly of theoretical interest to write the steady-state solution of an AR process but in practical time series modeling is useless.
It's interesting to notice that the constraint $|a| < 1$ is need to check to bound the variance value, which must be finite.
The variance must be convergent if $|a|<1.$ This is a critical condition for the stability and stationarity of the $AR(1)$ process.
Yule Walker equations
To easily compute the covariance function we can use this "trick" which is known as "Yule Walker equations."
For example for $v(t) \sim AR(2)$ :
$$v(t+1)=a_{1}v(t-1)+a_{2}v(t-2)+n(t)$$
we can multiply both sides by $v(t-\tau)$ :
$ARMA(n_a,n_c)$ $processes include all other $AR$ and $MA$ models as special cases.
Also we can say that given an $ARMA$ process $(n_a,n_b)$ the covariance function:
if $n_a > n_b$: $\gamma_y(\tau)$ becomes recursive for $\tau=n_a$
if $n_a \le n_b$: $\gamma_y(\tau)$ becomes recursive for $\tau=n_b +1$
ARMAX
ARMAX models extends ARMA including an exogenous inputs.
ARMAX($m,n,p,k$) with $k$ pure input/output (I/O) delay. $p$ order of the exogenous part:
The concept of $e(t)$ is a mathematical artifact representing the stochastic nature of measurements. In reality, $e(t)$ does not exist, but when is the output of a system, both deterministic and stochastic effects need to be considered. The deterministic effect is caused by an input $u$, while the stochastic effect is due to the inherent errors in measurements.
Processes with non-null term
TLDR: the key takeaway is that incorrect results are obtained when dealing with non-zero mean processes if one fails to recognize their non-zero mean status or doesn't read the exercise carefully.
Generally computations with non-zero mean signals are more complex compared to the zero-mean case. However, a tip to make the computation more efficient is to introduce unbiased versions of the processes $\tilde{y}$ and $\tilde{e}$, which are obtained by removing the means directly.
Unbiased versions are still useful because: