2023 AIME I Problems/Problem 11
Unofficial problem statement: Let be the set . How many subsets of have exactly one pair of consecutive elements? (Ex: )
Solution
Define to be the number of subsets of that have consecutive element pairs, and to be the number of subsets that have consecutive pair.
Using casework on where the consecutive pair is, it is easy to see that .
We see that , , and . This is because if the element is included in our subset, then there are possibilities, and otherwise there are possibilities. Thus, by induction, is the th Fibonacci number.
This means that .
~mathboy100
Solution (Double recursive equations approach)
Denote by the number of subsets of a set that consists of consecutive integers, such that each subset contains exactly one pair of consecutive integers.
Denote by the number of subsets of a set that consists of consecutive integers, such that each subset does not contain any consecutive integers.
Denote by the smallest number in set .
First, we compute .
Consider . We do casework analysis.
Case 1: A subset does not contain .
The number of subsets that has exactly one pair of consecutive integers is .
Case 2: A subset contains but does not contain .
The number of subsets that has exactly one pair of consecutive integers is .
Case 3: A subset contains and .
To have exactly one pair of consecutive integers, this subset cannot have , and cannot have consecutive integers in .
Thus, the number of subsets that has exactly one pair of consecutive integers is .
Therefore, for ,
For , we have . For , we have .
Second, we compute .
Consider . We do casework analysis.
Case 1: A subset does not contain .
The number of subsets that has no consecutive integers is .
Case 2: A subset contains .
To avoid having consecutive integers, the subset cannot have .
Thus, the number of subsets that has no consecutive integers is .
Therefore, for ,
For , we have . For , we have .
By solving the recursive equations above, we get .
~ Steven Chen (Professor Chen Education Palace, www.professorchenedu.com)