Dowód stacjonarności AR (2)


17

Rozważmy proces AR (2) o średnim środku

Xt=ϕ1Xt1+ϕ2Xt2+ϵt
gdzie ϵt jest standardowym procesem białego szumu. Tylko dla uproszczenia niech mnie nazywają ϕ1=b i ϕ2=a . Skupiając się na pierwiastkach równania charakterystyk otrzymałem
z1,2=b±b2+4a2a
Klasyczne warunki w podręcznikach są następujące:
{|a|<1a±b<1
Próbowałem rozwiązać ręcznie (przy pomocy Mathematica) nierówności na korzeniach, tj. System
{|bb2+4a2a|>1|b+b2+4a2a|>1
uzyskując zaledwie
a±b<1
Czy trzeci warunek (|a|<1) można odzyskać, dodając do siebie poprzednie dwa rozwiązania, otrzymująca+b+ab<2a<1które przez niektóre rozważania o znakach staje się|a|<1? A może brakuje mi rozwiązania?

Odpowiedzi:


18

Domyślam się, że charakterystyczne równanie, z którego odchodzisz, różni się od mojego. Pozwól mi przejść kilka kroków, aby zobaczyć, czy się zgadzamy.

Rozważ równanie

λ2ϕ1λϕ2=0

Jeśli z jest pierwiastkiem równania charakterystycznego dla „standardowego” 1ϕ1zϕ2z2=0 i ustawienia z1=λ , wyświetlacz uzyskuje przepisanie standardowego w następujący sposób:

1ϕ1zϕ2z2=0z2ϕ1z1ϕ2=0λ2ϕ1λϕ2=0
Dlatego alternatywnym warunkiem stabilności wskaźnikaAR(2)jest to, że wszystkie pierwiastki pierwszego wyświetlacza znajdują sięwewnątrzokręgu jednostki,|z|>1|λ|=|z1|<1.

Używamy tej reprezentacji do uzyskania trójkąta stacjonarności procesu AR(2) , to znaczy, że AR(2) jest stabilny, jeśli zostaną spełnione następujące trzy warunki:

  1. ϕ2<1+ϕ1
  2. ϕ2<1ϕ1
  3. ϕ2>1

Przypomnij sobie, że możesz zapisać pierwiastki pierwszego wyświetlacza (jeśli są prawdziwe) jako

λ1,2=ϕ1±ϕ12+4ϕ22

AR(2)|λ|<1λi

1<ϕ1±ϕ12+4ϕ22<12<ϕ1±ϕ12+4ϕ2<2
λiϕ1+ϕ12+4ϕ2<2
ϕ1+ϕ12+4ϕ2<2ϕ12+4ϕ2<2ϕ1ϕ12+4ϕ2<(2ϕ1)2ϕ12+4ϕ2<44ϕ1+ϕ12ϕ2<1ϕ1
Analogously, we find that ϕ2<1+ϕ1.

If λi is complex, then ϕ12<4ϕ2 and so

λ1,2=ϕ1/2±i(ϕ12+4ϕ2)/2.
The squared modulus of a complex number is the square of the real plus the square of the imaginary part. Hence,
λ2=(ϕ1/2)2+((ϕ12+4ϕ2)/2)2=ϕ12/4(ϕ12+4ϕ2)/4=ϕ2.
This is stable if |λ|<1, hence if ϕ2<1 or ϕ2>1, as was to be shown. (The restriction ϕ2<1 resulting from ϕ22<1 is redundant in view of ϕ2<1+ϕ1 and ϕ2<1ϕ1.)

Plotting the stationarity triangle, also indicating the line that separates complex from real roots, we get

enter image description here

Produced in R using

phi1 <- seq(from = -2.5, to = 2.5, length = 51) 
plot(phi1,1+phi1,lty="dashed",type="l",xlab="",ylab="",cex.axis=.8,ylim=c(-1.5,1.5))
abline(a = -1, b = 0, lty="dashed")
abline(a = 1, b = -1, lty="dashed")
title(ylab=expression(phi[2]),xlab=expression(phi[1]),cex.lab=.8)
polygon(x = phi1[6:46], y = 1-abs(phi1[6:46]), col="gray")
lines(phi1,-phi1^2/4)
text(0,-.5,expression(phi[2]<phi[1]^2/4),cex=.7)
text(1.2,.5,expression(phi[2]>1-phi[1]),cex=.7)
text(-1.75,.5,expression(phi[2]>1+phi[1]),cex=.7)

to jest bardzo szczegółowe wyjaśnienie.
Marco

@Christoph: Is there a typo in the answer? Look at equation for λ2. Also, what do you mean by square of a complex number? If z=a+bi then z2=a2b2+2iab. How do you say square of a complex number is "square of the real plus the square of the imaginary part"
shani

1
Thanks, quite right! I was referring to the sqaured modulus, see the edit.
Christoph Hanck

@ChristophHanck, what is your take on Aksakal's answers in these two threads: 1 and 2? Are they in conflict with your answer, and if so, what is the correct answer?
Richard Hardy

I think he is quite right when defining weak stationarity as constancy of the first two moments. Often, and also in the present thread, "stationarity" and "existence of a causal representation", i.e., a summable MA() representation without dependence on the future, are conflated. What my answer therefore more precisely shows is conditions for the existence of the latter.
Christoph Hanck
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.