InterviewSolution
Saved Bookmarks
| 1. |
Sum of n terms of any A.P. is n2 + 2n. Find the first term and common difference. |
|
Answer» Sum of terms Sn= n2 + 2n and S, (n – 1)2 + 2(n-1) We know that nth term of A.P. Tn= Sn – Sn – 1 ⇒ Tn= (n2 + 2n) – [(n – 1)2 + 2(n − 1)] = [n2 + 2n] – [n2 + 1 – 2n + 2n – 2] = [n2 + 2n] – [n2 – 1] = n2 + 2n – n2 + 1 = 2n + 1 First term T1= 2 × 1 + 1 = 2 + 1 = 3 Second term, T2 = 2 2 + 1 = 4 + 1 = 5 Common difference d = T2 – T1 = 5 – 3 = 2 Hence, first term is 3 and common difference is 2. |
|