

InterviewSolution
Saved Bookmarks
1. |
By the principle of mathematical induction, prove52n – 1 is divisible by 24, for all n ∈ N. |
Answer» Let P(n) be the proposition that 52n – 1 is divisible by 24. For n = 1, P(1) is: 52 – 1 = 25 – 1 = 24, 24 is divisible by 24. Assume that P(k) is true. i.e., 52k – 1 is divisible by 24 Let 52k – 1 = 24m To prove P(k + 1) is true. i.e., to prove 52(k + 1) – 1 is divisible by 24. P(k): 52k – 1 is divisible by 24. P(k + 1) = 52(k + 1) – 1 = 52k.52 – 1 = 52k(25) – 1 = 52k(24 + 1) – 1 = 24.52k + 52k – 1 = 24.52k + 24m = 24 [52k + 24] Which is divisible by 24 ⇒ P(k + 1) is also true. Hence by mathematical induction, P(n) is true for all values n ∈ N. |
|