Last Updated on May 4, 2023
GMAT OFFICIAL GUIDE PS
Solution:
(Note that the * symbol in this solution indicates multiplication.)
We are given that X(n) = 2 * X(n-1) – ½ * X(n-2), for all n ≥ 2. This is called a recursive formula, which means that we need to know prior terms before we can compute the subsequent terms. For example, if we want to know X(2), we must know both X(1) and X(0), because X(2) is equal to 2 * X(1) – ½ * X(0).
We are given X(1) = 2 and X(0) = 3. So, when n is 2, X(2) would be calculated as follows:
X(2) = 2 * X(1) – ½ * X(0)
X(2) = 2 * 2 – ½ * 3
X(2) = 4 – 1.5
X(2) = 2.5
Now we are ready to determine the value of X(3). In this case, n = 3, X(1) is 2, and X(2) is 2.5. We plug these values into the recursive formula given in the question stem:
X(3) = 2 * X(2) – ½ * X(1)
X(3) = 2 * 2.5 – ½ * 2
X(3) = 5 – 1
X(3) = 4
Answer: C