I have two sequences of equalities $L_n$ and $R_n$.
The equation $L_{n+1}$ is true only if $R_n$ is true, and the same happens for $R_{n+1}$
$$R_n \implies L_{n+1}$$
$$L_n \implies R_{n+1}$$
How can I use induction in order to prove the sequences $L_n$ and $R_n$.
My original idea was to prove $R_0$ and $L_0$, then show the proof of $R_n \implies L_{n+1}$ and $L_n \implies R_{n+1}$. But I'm not sure that this is enough... I feel like there is something I'm missing.
I wonder if this could work for more sequences like $A_n$, $B_n$ and $C_n$ with
$A_n \implies B_{n+1}$
$B_n \implies C_{n+1}$
$C_n \implies A_{n+1}$
It is quite evident that $R_n\wedge L_n\Rightarrow R_{n+1}\wedge L_{n+1}$ so induction can be applied here.