

InterviewSolution
Saved Bookmarks
1. |
Similarly subtract a fixed number from each and every term of A.P. Write the resulting numbers as a list. |
Answer» 4, 7, 10, 13, 16, …… Subtracting ‘2’ from the each term of A.P in given series, we get 4 – 2, 7 – 2, 10- 2, 13 – 2, 16 – 2, …… 2, 5, 8, 11, 14, …… In the list obtained, the first term a1 = 2 , a2 = 5, a3 = 8, a4 = 11, Also a2 – a1 = 5 – 2 = 3 a3 – a2 = 8 – 5 = 3 a4 – a3 = 11 – 8 = 3 …………………………………… i.e., d = a2 – a1 = a3 – a2 = a4 – a3 = 3 ∴ The resulting list forms an A.P. |
|