Bunuel
The sequence \(X_{n}\) is defined as follows: \(X_{n} = 2X_{(n-1)}-1\) whenever n is an integer greater than 1. If \(X_1=3\), what is the value of \(X_{20} - X_{19}\)?
(A) \(2^{16}\)
(B) \(2^{17}\)
(C) \(2^{18}\)
(D) \(2^{19}\)
(E) \(2^{20}\)
Deconstructing the QuestionSequence definition: \(X_n = 2X_{n-1} - 1\) for \(n > 1\).
Initial term: \(X_1 = 3\).
Target: Value of \(X_{20} - X_{19}\).
Method 1: Pattern RecognitionLet's compute the first few terms:
\(X_1 = 3\)
\(X_2 = 2(3) - 1 = 5\)
\(X_3 = 2(5) - 1 = 9\)
\(X_4 = 2(9) - 1 = 17\)
Notice the relationship with powers of 2:
\(X_1 = 2^1 + 1\)
\(X_2 = 2^2 + 1\)
\(X_3 = 2^3 + 1\)
...
General Formula: \(X_n = 2^n + 1\).
Now substitute into the target expression:
\(X_{20} - X_{19} = (2^{20} + 1) - (2^{19} + 1)\)
\(= 2^{20} - 2^{19}\)
Factor out \(2^{19}\):
\(= 2^{19}(2 - 1) = 2^{19}\).
Method 2: Algebraic SimplificationGiven \(X_{20} = 2X_{19} - 1\).
Subtract \(X_{19}\) from both sides:
\(X_{20} - X_{19} = 2X_{19} - 1 - X_{19}\)
\(X_{20} - X_{19} = X_{19} - 1\).
Using the pattern \(X_{19} = 2^{19} + 1\):
\(X_{20} - X_{19} = (2^{19} + 1) - 1 = 2^{19}\).
Answer: D