These are repeating decimal problem - these can definitely be tricky at first, but once you understand the pattern, they become much more manageable. Let me walk you through this one.
The Key InsightWhen we're looking for the "longest sequence of different digits" in a repeating decimal, we're actually looking for what mathematicians call the
period length - that's the number of digits that repeat as a group.
For example:
- \(\frac{1}{3} = 0.333...\) has a period of 1 (just "3" repeats)
- \(\frac{1}{7} = 0.142857142857...\) has a period of 6 (the group "142857" repeats)
Here's what you need to see: The period length depends on the denominator of the fraction when it's in lowest terms. Specifically, we need to find the smallest \(n\) where \(10^n - 1\) is divisible by the denominator.
Let's work through our options:First, let's make sure all fractions are in lowest terms:
- \(\frac{2}{11}\) - already simplified, denominator = 11
- \(\frac{1}{3}\) - already simplified, denominator = 3
- \(\frac{41}{99}\) - already simplified (41 is prime), denominator = 99
- \(\frac{2}{3}\) - already simplified, denominator = 3
- \(\frac{23}{37}\) - already simplified (37 is prime), denominator = 37
Now, let's find the period length for each denominator:
For denominator 3:\(10^1 - 1 = 9\), and \(9 \div 3 = 3\) ✓
Period length = 1
For denominator 11:\(10^1 - 1 = 9\) (not divisible by 11)
\(10^2 - 1 = 99\), and \(99 \div 11 = 9\) ✓
Period length = 2
For denominator 99:\(10^2 - 1 = 99\), and \(99 \div 99 = 1\) ✓
Period length = 2
For denominator 37:\(10^1 - 1 = 9\) (not divisible by 37)
\(10^2 - 1 = 99\) (not divisible by 37)
\(10^3 - 1 = 999\), and \(999 \div 37 = 27\) ✓
Period length = 3
Notice how we systematically test powers of 10 until we find one that works!
The Answer:Comparing all period lengths:
- Options A, C: period 2
- Options B, D: period 1
- Option E: period 3
Therefore, \(\frac{23}{37}\) has the longest sequence of different digits.
Answer: E---
You can check out the
step-by-step solution on Neuron by e-GMAT to master the systematic framework for finding period lengths and discover a time-saving pattern that works for all repeating decimal problems. You can also explore other GMAT official questions with detailed solutions on Neuron for structured practice
here.