Given this pattern
$\frac{1}{2},\frac{1}{2}\left(\frac{1}{2}\right)+\frac{1}{2},\frac{1}{2}\left(\frac{1}{2}\left(\frac{1}{2}\right)+\frac{1}{2}\right)+\frac{1}{2}\dots$
In other words $a_1=\frac{1}{2},a_n=\frac{1}{2}a_{n-1}+\frac{1}{2}$
The formula for $a_n=1-\frac{1}{2^n}$
I know a method to solve it from wikipedia given here
And I can see the pattern if I right out the first few terms of the sequence.
Is there any other way of understanding this recurrence relation intuitively or formally?
Intuitively ...
Start with a cup with $1/2$ wine and $1/2$ water. In each step, pour out $1/2$ of the mix and top it up with pure water. You can easily convince yourself that:
As at each step the glass is full again (with less and less wine :( ), then $a_n+\frac{1}{2^n}=1$ holds for all $n$, which gives you $a_n=1-\frac{1}{2^n}$.