InterviewSolution
Saved Bookmarks
| 1. |
Given an example of a statement P(n) such that it is true for all n ϵ N. |
|
Answer» P(n) = 1 + 2 + 3 + - - - - - + n = \(\frac{n(n+1)}2\) P(n) is true for all natural numbers. Hence, P(n) is true for all n∈N |
|