Difference between revisions of "Mock AIME 4 2006-2007 Problems/Problem 5"

 
(Solution)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Problem==
 
==Problem==
How many 10-digit positive integers have all digits either 1 or 2, and have two consecutive 1's?
+
How many 10-[[digit]] [[positive integer]]s have all digits either 1 or 2, and have two consecutive 1's?
 
==Solution==
 
==Solution==
 +
We take as our universe the set of 10-digit [[integer]]s whose digits are all either 1 or 2, of which there are <math>2^{10}</math>, and we count the complement.  The complement is the set of 10-digit positive integers composed of the digits 1 and 2 with no two consecutive 1s.  Counting such numbers is a popular combinatorial problem: we approach it via a [[recursion]].
  
{{solution}}
+
There are two "good" one-digit numbers (1 and 2) and three good two-digit numbers (12, 21 and 22).  Each such <math>n</math>-digit number is formed either by gluing "2" on to the end of a good <math>(n - 1)</math>-digit number or by gluing "21" onto the end of a good <math>(n - 2)</math>-digit number.  This is a [[bijection]] between the good <math>n</math>-digit numbers and the [[union]] of the good <math>(n-1)</math>- and <math>(n - 2)</math>-digit numbers.  Thus, the number of good <math>n</math>-digit numbers is the sum of the number of good <math>(n-1)</math>- and <math>(n - 2)</math>-digit numbers.  The resulting recursion is exactly that of the Fibonacci numbers with initial values <math>F_1 = 2</math> and <math>F_2 = 3</math>.
  
*[[Mock AIME 4 2006-2007 Problems]]
+
Thus, our final answer is <math>2^{10} - F_{10} = 1024 - 144 = 880</math>.
 +
 
 +
==Solution2==
 +
Again, we seek the amount without two consecutive 1s. Assume there are n 2s in one of the numbers. We have to insert the 10-n 1s in the n+1 slots surrounding the 2s. Thus, there are <math>{{n+1} \choose{10-n}}</math> possibilities for a number with n 2s. The answer is thus <math>2^{10}- {6 \choose 5} - {7 \choose 4} - {8 \choose 3} - {9 \choose 2} - {10 \choose 1} - {11 \choose 0}=880</math>.
 +
 
 +
== See also ==
 +
{{Mock AIME box|year=2006-2007|n=4|num-b=4|num-a=6|source=125025}}
 +
 
 +
[[Category:Intermediate Combinatorics Problems]]

Latest revision as of 14:50, 16 February 2009

Problem

How many 10-digit positive integers have all digits either 1 or 2, and have two consecutive 1's?

Solution

We take as our universe the set of 10-digit integers whose digits are all either 1 or 2, of which there are $2^{10}$, and we count the complement. The complement is the set of 10-digit positive integers composed of the digits 1 and 2 with no two consecutive 1s. Counting such numbers is a popular combinatorial problem: we approach it via a recursion.

There are two "good" one-digit numbers (1 and 2) and three good two-digit numbers (12, 21 and 22). Each such $n$-digit number is formed either by gluing "2" on to the end of a good $(n - 1)$-digit number or by gluing "21" onto the end of a good $(n - 2)$-digit number. This is a bijection between the good $n$-digit numbers and the union of the good $(n-1)$- and $(n - 2)$-digit numbers. Thus, the number of good $n$-digit numbers is the sum of the number of good $(n-1)$- and $(n - 2)$-digit numbers. The resulting recursion is exactly that of the Fibonacci numbers with initial values $F_1 = 2$ and $F_2 = 3$.

Thus, our final answer is $2^{10} - F_{10} = 1024 - 144 = 880$.

Solution2

Again, we seek the amount without two consecutive 1s. Assume there are n 2s in one of the numbers. We have to insert the 10-n 1s in the n+1 slots surrounding the 2s. Thus, there are ${{n+1} \choose{10-n}}$ possibilities for a number with n 2s. The answer is thus $2^{10}- {6 \choose 5} - {7 \choose 4} - {8 \choose 3} - {9 \choose 2} - {10 \choose 1} - {11 \choose 0}=880$.

See also

Mock AIME 4 2006-2007 (Problems, Source)
Preceded by
Problem 4
Followed by
Problem 6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15