4

I need the full proof/solution to this problem.

enter image description here

What I've done so far:

enter image description here

Code Man
  • 119

4 Answers4

10

suppose your formula is true for $n$, Then $$\sum^{n}_{i=1}{\frac{1}{\sqrt{i}}}>\sqrt{n}$$ we then try to prove the formula true for $n+1$ $$\sum^{n}_{i=1}{\frac{1}{\sqrt{i}}}+\frac{1}{\sqrt{n+1}}>\sqrt{n}+\frac{1}{\sqrt{n+1}}$$ $$=\frac{\sqrt{n}\sqrt{n+1}+1}{\sqrt{n+1}}>\frac{n+1}{\sqrt{n+1}}=\sqrt{n+1}$$

The base case is true so it's true for all n

qwerty314
  • 756
  • 3
    how did you simplify sqrt(n) X sqrt(n+1) + 1 to n+1? Also, why is (n+1)/(sqrt(n+1)) = sqrt(n+1)? – Code Man Oct 12 '15 at 12:26
  • 1
  • sqrt(n) is smaller than sqrt(n+1), so we can replace it and make the relation an inequality (meaning always bigger). Then the sqrt(n)^2=n
  • – qwerty314 Oct 12 '15 at 12:28
  • 1
  • a/sqrt(a)=a*sqrt(a)/a=sqrt(a)
  • – qwerty314 Oct 12 '15 at 12:29
  • 1
    shouldn't your summation have an upper bound of n instead of n+1? – Mohammad Ali Dec 10 '19 at 21:27