It is given that $$X_n = \min(X_{n-1}, X_{n-2}) + \epsilon_n \quad \forall n\ge2 $$
where $X_0=X_1=0$, and $\{\epsilon_n:n\ge2\}$ are i.i.d random variables equal to either -1 or 1 with probability $1/2$.
The question asks if $(X_n:n\ge0)$ is a Markov chain. If not, construct a new stochastic process $(Y_n:n\ge0)$ such that
(i) $(Y_n:n\ge0)$ is a Markov chain, and
(ii) for every $n\ge0$, $X_n$ can be identified if $Y_n$ is known
My attempt to solve this problem
$(X_n:n\ge0)$ is not a Markov chain becuase when we subsititue $X_3=\min(\epsilon_2,0)+\epsilon_3$ and $X_2=\epsilon_2$ into $X_4$, we get: $$X_4 = \min(\min(\epsilon_2,0)+\epsilon_3),\epsilon_2)+\epsilon_4$$ which depends on the previous two time-steps.
Now, if we want to know $X_n$, we need to know $\epsilon_{n-1}$ and $\epsilon_{n-2}$. Possible well-known Markovian $Y_n$ are
$Y_n = \sum^n_2(\epsilon_i)$ and
$Y_n =\min(\epsilon_{n-1},\epsilon_{n-2},...,\epsilon_1)$
However, knowing $Y_n$ in these cases won't get $\epsilon_{n-1}$ and $\epsilon_{n-2}$ explicitly, and $X_n$ cannot be determined without knowing exactly what $\epsilon_{n-1}$ and $\epsilon_{n-2}$ are.
To get a more explicit knowledge on $\epsilon_{n-1}$ and $\epsilon_{n-2}$, we need to have something like $$Y_n =\epsilon_{n-1}+\epsilon_{n-2}$$
Then if $Y_n = 2$, we know that $\epsilon_{n-1}=\epsilon_{n-2}=1$;
if $Y_n = -2$, $\epsilon_{n-1}=\epsilon_{n-2}=-1$;
if $Y_n = 0$, one of the $\epsilon$ is 1 and -1 for the other one.
However, this $Y_n$ is not Markovian in this case.
Can anyone gives me some hints?