Agradecería alguna orientación sobre un asunto de sustitución recursiva, donde tenemos el modelo AR:
$$y_t = \alpha +\theta_1y_{t-1}+ u_t$$
Y
$$E(y_t)= \mu_t$$
Dónde:
$$\mu_t = (1+\theta_1 + \theta_1^2+..+\theta^{t-1})\alpha+\theta^ty_0$$
Por sustitución recursiva obtenemos:
$$y_t = \mu_t +(u_t +\theta_1u_{t-1}+\theta^2u_{t-2}+...+\theta^{t-1}u_1)$$
Y posteriormente:
$$E[y_t] = E[\mu_t]+ E[(u_t +\theta_1u_{t-1}+\theta^2u_{t-2}+...+\theta^{t-1}u_1)]= \mu_t$$
¿Podría alguien explicar cómo se obtiene el paso relativo a la sustitución recursiva, pasando de la línea 2,3,4?