In the Moving Average process, the data points are all dependent on each other. This is unlike the Autoregressive Time Series or The Markov Property.
We define MA(1) as the 0-mean moving average process of order 1
- We say - s are independent and normally distributed with mean of 0 and variance
- is a constant
Any will be independent of some for
We define MA(1) with -mean moving average process of order 1
Since s have mean of 0, .
This is because s are the only random variable
We can show that depends on all previous s. Note that this is a contradiction of the Markov Property.
We can show that for an MA(1) Process, the first lag autocovariance is . For terms after this, we can show that the autocovariance is 0.
The autocorrelation is defined as the auto covariance divided by the variance of the process.
Simulating 1000 observations from MA(1) with
ma1 <- arima.sim(1000, model=list(ma=c(.9)))
acf(ma1)Given a time series plot and asked to determine whether the plot s AR(1) or MA(1) we can determine based on the sample acf function. If the acf function cuts off after lag 1 we have MA(1). If they decay exponentially then we have an AR(1).