Exercice 1 :
Xt = −0.8Xt−1 + 0.1Xt−2 + t
1) Le processus Xt est un processus AR(2), donc il est stationnaire ssi :
φ1 + φ2 < 1 φ1 + φ2 = −0.8 + 0.1 = −0.7 < 1
φ2 − φ1 < 1 or φ2 − φ1 = 0.1 − (−0.8) = 0.9 < 1
|φ2 | < 1 |φ2 | = 0.1 < 1
avec Ψ(L) = ψ0 + ψ1 L + ψ2 L2 + . . . + ψj Lj + . . .
or Xt = φ1 Xt−1 + φ2 Xt−2 + t ⇒ (1 − φ1 L − φ2 L2 )Xt = t ⇒ Φ(L)Xt = t ⇒ Xt = Φ(L)−1 t .
Donc Φ(L)−1 = Ψ(L) ⇒ 1 = Φ(L)Ψ(L) = (1 − φ1 L − φ2 L2 )(ψ0 + ψ1 L + ψ2 L2 + . . .)
Soit 1 = ψ0 + (ψ1 − φ1 ψ0 )L + (ψ2 − φ1 ψ1 − φ2 ψ0 )L2 + (ψ3 − φ1 ψ2 − φ2 ψ1 )L3 + . . .
Par identication, on obtient : ψ0 = 1, ψ1 − φ1 ψ0 = 0 ⇒ ψ1 = φ1 ψ0 = −0.8
et ψj − φ1 ψj−1 − φ2 ψj−2 = 0 ⇒ ψj = φ1 ψj−1 − φ2 ψj−2 , pour tout j = 2, 3, 4, . . ..
Ainsi, on obtient :
j 0 1 2 3 4 5
ψj 1 −0.8 0.74 −0.672 0.611 −0.556
Remarque : Avec R, on retrouve le résultat en tapant la ligne de commande suivante :
> ARMAtoMA(ar=c(-0.8,0.1), lag.max=5)
[1] -0.80000 0.74000 -0.67200 0.61160 -0.55648
3) La fonction d'auto-corrélation (ACF) d'un processus AR(p) vérie la relation suivante :
ρ(k) = φ1 ρ(k − 1) + φ2 ρ(k − 2) + . . . + φp ρ(k − p)
k 0 1 2 3 4 5
ρ(k) 1 -0.888 0.811 -0.737 0.6713 -0.6108
1
La fonction d'auto-corrélation partielle (PACF) d'un processus AR(p) s'annule à partir du
retard k = p + 1. Donc φkk = 0 pour tout k = 3, 4, . . .. Il nous reste donc, à calculer φkk pour
k = {1, 2}.
|R∗ (k)|
La PACF se calcule à l'aide de la relation suivante : φ11 = ρ(1) et φkk = avec
|R(k)|
ρ(0) ρ(1) · · · ρ(k − 1)
ρ(1) ρ(0) · · · ρ(k − 2)
R(k) = .. .. ... ..
. . .
ρ(k − 1) ρ(k − 2) · · · ρ(0)
0.5
●
●
●
0.5
●
0.0 ● ● ●
PACF
ACF
−0.5 0.0
−0.5
●
−1.0
● ●
●
0 1 2 3 4 5 1 2 3 4 5
Retards Retards
2
µ
on a E(Xt ) = où Φ(L) = 1 − φ1 L − φ2 L2 − . . . − φp Lp .
Φ(1)
La variance du processus peut être déduite à partir les équations de Yule-Walker :
2 γ(1) γ(2)
γ(0) − φ1 γ(1) − φ2 γ(2) = σ =⇒ γ(0) 1 − φ1 − φ2 = σ2
γ(0) γ(0)
Exercice 3 :
1) Simulation de 300 réalisations d'un processus AR(1) avec φ1 = 0.8 se fait en tapant la ligne de
commande suivante :
X<-arima.sim(list(ar=0.8),n=300,sd=1)
2) Calcul et représentation graphique des coecients d'auto-corrélations et d'auto-corrélations
partielles empiriques :
acf(X,lag.max=30) # ACF
pacf(X,lag.max=30) # PACF
Remarque : Pour le calcul des coecients AC et ACP théoriques, on utilise la fonction ARMAacf
(voir Exercice 1).
Exercice 4 :
Le processus Xt est un processus ARM A(1, 1). Donc il est stationnaire si |φ| < 1 et inversible si
|θ| < 1.
3
1) Puisque |φ| < 1 et |θ| < 1, donc le processus est stationnaire et inversible. Ainsi, il admet une
représentation moyenne mobile innie :