InterviewSolution
Saved Bookmarks
| 1. |
Using the principle of mathmatical induction, prove each of the following for all `n in N` `(1+1/1)(1+1/2)(1+1/3)...(1+1/n)=(n+1)`. |
|
Answer» `P(k): (1+1)(1+1/2)(1+1/3)…(1+1/k)= (k+1)`. Now, `{(1+1)(1+1/2)(1+1/3)…(1+1/k)}(1+1/(k+1))` ` = (k+1)(1+1/(k+1)) = (k+1)*((k+2))/((k+1)) = (k+2)`. |
|