For this question, I know how to do the base case and the inductive hypothesis but I'm having trouble with the inductive step. Here is what I have so far. Can anyone please help me out?
Prove by induction that for all integers $n\ge2$
$\sqrt n < \sum_{i=1}^n \frac{1}{\sqrt n }$
Base Case:
n = 2
$\sqrt 2 < 1 + \frac{1}{\sqrt 2}$
Inductive Hypothesis:
Let k be an arbitrary integer such that $k\ge2$
$\sqrt k < \sum_{i=1}^k \frac{1}{\sqrt n }$
Inductive Step:
Show true for k+1
$\sqrt{k+1} < \sum_{i=1}^{k+1} \frac{1}{\sqrt n }$