Given a sequence:
$$ x_{n+1} = \frac{1}{2-x_n} $$ Finding the general form of the sequence $x_n$ where $x_1 = {1 \over 2}$ and $n \in \mathbb N$
What I've done is expand the terms $n$ times and then go backwards in order to find some pattern, so:
$$ x_{n+1} = \frac{1}{2 - x_n} = \frac{1}{2-\frac{1}{2-x_{n-1}}} = \dots $$
Now wrapping from the bottom:
$$ \frac{1}{2 - {1 \over 2}} = {2 \over 3} \\ \frac{1}{2 - {2 \over 3}} = {3 \over 4} \\ \dots \\ {1 \over {2 - \frac{n-1}{n}}} = {n \over n+1} $$
So the pattern suggests that $x_n = {n \over n+1}$.
I'm not satisfied with that approach since i believe it's going to fail for more complicated sequences.
What approach or technique could i use to reach the same result in a more "analytical" way?