The Question is as Follows:
Define the sequence of numbers Ai by:
A(0) = 2
$A\left(n+1\right)\ =\ \frac{A\left(n\right)}{2}+\frac{1}{A\left(n\right)}$ (for n≥ 1)
Prove that $A\left(n\right)\ \le\ \sqrt{2}+\frac{1}{2^{n}}$ for n >= 0
My Proof:
Proof by induction: P(n): $A\left(n\right)\ \le\ \sqrt{2}+\frac{1}{2^{n}}$
Basecase: n = 0
$A(0) = 2 \le\ \sqrt{2}+\frac{1}{2^{0}}$
So base case is true.
Inductive Step:
Assuming $A\left(n\right)\ \le\ \sqrt{2}+\frac{1}{2^{n}}$ to prove $A\left(n+1\right)\ \le\ \sqrt{2}+\frac{1}{2^{\left(n+1\right)}}.$
By induction hypothesis:
$A\left(n\right)\ \le\ \sqrt{2}+\frac{1}{2^{n}}$
The limit as n goes to infinity A(n) goes to $\sqrt{2}$. it converges to $\sqrt{2}$. This means as n increases A(n) gets smaller and smaller and gets closer to $\sqrt{2}$. This means:
$A\left(n\right)\ \ge\ A\left(n+1\right)$
Which means:
$A\left(n+1\right)\ \le\ \sqrt{2}+\frac{1}{2^{n}}$
We now claim:
$A\left(n+1\right)\ \le\ \sqrt{2}+\frac{1}{2^{\left(n+1\right)}}$
Proof by contradiction: For the sake of contradiction assume the opposite:
$A\left(n+1\right)\ \ge\ \sqrt{2}+\frac{1}{2^{n+1}}$
let n = n - 1
$A\left(n\right)\ \ge\ \sqrt{2}+\frac{1}{2^{n}}$
But this contradicts inductive hypothesis. Therefore:
$A\left(n+1\right)\ \le\ \sqrt{2}+\frac{1}{2^{\left(n+1\right)}}$
Hence Proven.
Is my Proof correct?
Your idea of using induction is correct, but the induction step has mistakes:
To solve these issues, we need to at least use the recursion. Here are some ideas: