Difficulty: Easy
Correct Answer: 86
Explanation:
Introduction / Context:This problem tests basic AP formulas: the k-th term t_k = a + (k − 1)d. Knowing two terms lets us find the common difference and first term, then any other term or combination such as t2 + t8.Given Data / Assumptions:
Concept / Approach:Solve for d from the difference between t6 and t4, then back-solve a. Compute t2 and t8 and add. Alternatively, use an identity to avoid computing a explicitly.Step-by-Step Solution:
From t6 − t4 = (a + 5d) − (a + 3d) = 2d = 12 ⇒ d = 6.From t4: a + 3d = 37 ⇒ a + 18 = 37 ⇒ a = 19.t2 = a + d = 19 + 6 = 25.t8 = a + 7d = 19 + 42 = 61.Sum t2 + t8 = 25 + 61 = 86.Verification / Alternative check:Identity: t2 + t8 = (a + d) + (a + 7d) = 2a + 8d = 2(a + 3d) + 2d = 2*37 + 12 = 86. Confirms without computing a separately.Why Other Options Are Wrong:
Common Pitfalls:Misreading “6th is 12 more than 4th” or mixing term indices. Always convert to algebraic equalities and proceed systematically.
Final Answer:
86
Discussion & Comments