InterviewSolution
Saved Bookmarks
| 1. |
Give an example of a statement P(n) such that P(3) is true, but P(4) is not true. |
|
Answer» Consider the statement P(n), `2^(n)` less than 12. Here P(3) is `2^(3)` is less than 12, which is true. `(therefore 8 lt 12)` But P(4) i.e. `2^(4)` is less than 12 is not true `(therefore 16 gt 12)` |
|