The correct option is D - 47.
[as per provisional answerkey]Solution
The question describes a Fibonacci-style sequence where each term (starting from the third) is the sum of the two preceding terms. We are given the first two terms and need to find the sixth term.
Let the sequence be represented as T1, T2, T3, T4, T5, T6.
- First term (T1): 4 (Given)
- Second term (T2): 7 (Given)
- Third term (T3): T1 + T2 = 4+7=11
- Fourth term (T4): T2 + T3 = 7+11=18
- Fifth term (T5): T3 + T4 = 11+18=29
- Sixth term (T6): T4 + T5 = 18+29=47
The sixth number in the sequence is 47.
Why the other options are incorrect
- Option (a) - 29: This is the 5th term of the sequence, not the 6th.
- Option (b) - 37: This value does not follow the additive rule of the sequence; it is likely a calculation error.
- Option (c) - 43: This value is incorrect; it may result from a miscalculation in adding the 4th and 5th terms (18+29).
Key Concept
Recursive sequences where each term is defined as the sum of the preceding terms (Tn = Tn-1 + Tn-2).