Доказ стаціонарності АР (2)


17

Розглянемо середньоцентричний процес AR (2)

Xt=ϕ1Xt1+ϕ2Xt2+ϵt
де ϵt - стандартний процес білого шуму. Просто для простоти дозвольте мені називати ϕ1=b і ϕ2=a . Орієнтуючись на корені рівняння характеристик, я отримав
z1,2=b±b2+4a2a
Класичні умови в підручниках такі:
{|a|<1a±b<1
Я намагався вирішити вручну (за допомогою Mathematica) нерівності коренів, тобто систему
{|bb2+4a2a|>1|b+b2+4a2a|>1
отримання тільки
a±b<1
Може третя умова (|a|<1) можна відновитидодавши попередні два рішення одинодним отримувати+б+-б<2<1що через кілька міркувань знак стає| а| <1? Або я пропускаю рішення?a+b+ab<2a<1|a|<1

Відповіді:


18

Я здогадуюсь, що характерне рівняння, від якого ви відходите, відрізняється від мого. Дозвольте мені пройти кілька кроків, щоб побачити, чи ми згодні.

Розглянемо рівняння

λ2ϕ1λϕ2=0

Якщо z є коренем "стандартного" характерного рівняння 1ϕ1zϕ2z2=0 і задає z1=λ , дисплей отримує від переписання стандартного таким чином:

1ϕ1zϕ2z2=0z2ϕ1z1ϕ2=0λ2ϕ1λϕ2=0
Отже, альтернативною умовою стабільностіAR(2)є те, що всі корені першого дисплея знаходятьсявсерединіодиничного кола,|z|>1|λ|=|z1|<1.

Ми використовуємо це подання для отримання трикутника стаціонарності процесу AR(2) , тобто AR(2) стабільний, якщо виконуються наступні три умови:

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

Нагадаємо, що ви можете записати корені першого дисплея (якщо вони справжні) як

λ1,2=ϕ1±ϕ12+4ϕ22
щоб знайти перші дві умови.

Тоді AR(2) є нерухомим iff |λ|<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)

this is a very detailed explanation.
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.
Крістоф Ганк
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.