Processing math: 100%

Question 4.1.

Part A.

Given the AR2 model Xn=1.5Xn−1−0.8Xn−2+ϵn, we have ϵn=Xn−1.5Xn−1+0.8Xn−2. The ACF for {ϵn} is therefore γϵ(h)=Cov(ϵn+h,ϵn)=Cov(Xn+h−1.5Xn+h−1+0.8Xn+h−2,Xn−1.5Xn−1+0.8Xn−2)=3.89γX(h)−2.7[γX(h+1)−γX(h−1)]+0.8[γX(h+2)−γX(h−2)].

Since γ(h) is the inverse Fourier Transformation of the spectral density, we have γ(h)=∫12−12e2πiwhf(w)dwγϵ(h)=∫12−12[(1+1.52+0.82)+(−1.5−1.5×0.8)(e2πiw+e−2πiw)+0.8(e4πiw+e−4πiw)]e2πiwhλX(w)dw=∫12−12[3.89−5.4cos(2πw)+1.6cos(4πw)]e2πiwhλX(w)dw.

The spectrum of the white noise is λϵ(w)=∑hγ0=σ2. Therefore, by the uniqueness of the Fourier Transformation, we have λϵ(w)=σ2=[3.89−5.4cos(2πw)+1.6cos(4πw)]λX(w)⇒λX(w)=σ23.89−5.4cos(2πw)+1.6cos(4πw)

The plot of the spectral density and autocovariance are given as follows.

library('TSA')
ARMAspec(model = list(ar = c(1.5, -0.8)))

model_AR = arima.sim(model = list( ar = c(1.5, -0.8)), n=1000)
acf(model_AR, type="covariance")

Part B.

Given the MA2 model

Xn=ϵn−2+ϵn−1+ϵn with Var(ϵn)=σ2, we start by writing the ACF γ(0)=Cov(Xn,Xn)=3σ2γ(1)=γ(−1)=Cov(Xn,Xn−1)=2σ2γ(2)=γ(−2)=Cov(Xn,Xn−2)=σ2γ(h)=0∀|h|≥3. So we have λ(w)=∑hγ(h)e−2πiwh=2∑h=−2γ(h)e−2πiwh=γ(0)+γ(1)cos(2πw)+γ(2)cos(4πw)=σ2[3+4cos(2πw)+2cos(4πw)] The plot of the spectral density and autocovariance are given as follows:

ARMAspec(model = list(ma = c(1, 1)))

model_MA = arima.sim(model = list( ma = c(1, 1)), n=1000)
acf(model_MA, type="covariance", plot= TRUE)

Part C.

For part A, if we look closely at the spectrum density plot, we can see a peak at frequency around 0.1 (actually slightly less than 0.1), which is the dominant frequency. This indicates that the dominant period is around 10 (precisely larger than 10). If we look at the ACF, we can see there exists an oscillatory behavior characteristic of period = 11. We see that these two are matched with each other.

For part B, there is no appearant peak on the spectrum density plot, and there is no periodic behavior on the ACF plot either. Again, these two correspond to each other.

We can also notice a small oscillation in the spectral density for the MA process, with a dip in the spectral density at frequency 0.33. Thus, for the AR process, the spectral power is concentrated around a peak and the ACF oscillates. For the MA process, the ACF goes quickly to zero and the spectrum oscillates.


Question 4.2.
We first read in the data from the source. We seek to find out the relationship between time and number. We now make a time plot of the data to explore.

mydata = read.table(file="http://ionides.github.io/531w16/hw/sunspots.txt", header = TRUE)
year = mydata$Time
number = mydata$Number
plot(year, number, type= "l")

From the plot, we see that there is a periodic behavior, with regularly spaced peaks. The time interval between these peaks are about 11 years. This is as expected from reading

http://solarscience.msfc.nasa.gov/SunspotCycle.shtml.

Now we take a look at spectrum density.

spectrum(number, main = "Unsmoothed periodogram")

We first use R to see an unparametric method result of the data.

smoothed_r = spectrum(number, spans=c(30,30), main = "Smoothed periodogram")

We now determine the dominant frequency.

smoothed_r$freq[which.max(smoothed_r$spec)]
## [1] 0.007407407

We see that the dominant frequency is 0.007407407, which corresponds to a period of 11.25 years.

Now we use parametric method to estimate the spectral density.

estimated = spectrum(number, method = "ar", main = "Spectrum estimated via AR model picked by AIC")
abline(v=estimated$freq[which.max(estimated$spec)], lty="dotted")

The dominant frequecy is given by

estimated$freq[which.max(estimated$spec)]
## [1] 0.008016032

We see that the dominant frequency is 0.008016032, which corresponds to a period of 10.4 years.

the results from two estimations are very close to each other and they are close to the 11 year period. Therefore we can conclude that both of them are reliable and can be used.