Difference between revisions of "2007 AIME II Problems/Problem 13"
m (→Solution: correct typos, rmv {{soln}}) |
(→Solution) |
||
(11 intermediate revisions by 7 users not shown) | |||
Line 1: | Line 1: | ||
== Problem == | == Problem == | ||
− | A [[triangle|triangular]] [[array]] of [[square]]s has one square in the first row, two in the second, and in general, <math>k</math> squares in the <math>k</math>th row for <math>1 \leq k \leq 11.</math> With the exception of the bottom row, each square rests on two squares in the row immediately below (illustrated in given diagram). In each square of the eleventh row, a <math>0</math> or a <math>1</math> is placed. Numbers are then placed into the other squares, with the entry for each square being the sum of the entries in the two squares below it. For how many initial distributions of <math>0</math>'s and <math>1</math>'s in the bottom row is the number in the top square a [[multiple]] of <math>3</math>? | + | A [[triangle|triangular]] [[array]] of [[square]]s has one square in the first row, two in the second, and in general, <math>k</math> squares in the <math>k</math>th row for <math>1 \leq k \leq 11.</math> With the exception of the bottom row, each square rests on two squares in the row immediately below (illustrated in the given diagram). In each square of the eleventh row, a <math>0</math> or a <math>1</math> is placed. Numbers are then placed into the other squares, with the entry for each square being the sum of the entries in the two squares below it. For how many initial distributions of <math>0</math>'s and <math>1</math>'s in the bottom row is the number in the top square a [[multiple]] of <math>3</math>? |
− | + | <asy> | |
+ | for (int i=0; i<12; ++i){ | ||
+ | for (int j=0; j<i; ++j){ | ||
+ | //dot((-j+i/2,-i)); | ||
+ | draw((-j+i/2,-i)--(-j+i/2+1,-i)--(-j+i/2+1,-i+1)--(-j+i/2,-i+1)--cycle); | ||
+ | } | ||
+ | } | ||
+ | </asy> | ||
== Solution == | == Solution == | ||
− | Label each of the bottom squares as <math> | + | Label each of the bottom squares as <math>x_0, x_1 \ldots x_9, x_{10}</math>. |
− | Through [[induction]], we can find that the top square is equal to <math>{10\choose0}x_0 + {10\choose1}x_1 + {10\choose2}x_2 + \ldots {10\choose10}x_{10}</math>. | + | Through [[induction]], we can find that the top square is equal to <math>{10\choose0}x_0 + {10\choose1}x_1 + {10\choose2}x_2 + \ldots {10\choose10}x_{10}</math>. (This also makes sense based on a combinatorial argument: the number of ways a number can "travel" to the top position going only up is equal to the number of times it will be counted in the final sum.) |
− | Examine the equation <math>\mod 3</math>. All of the coefficients from <math> | + | Examine the equation <math>\mod 3</math>. All of the coefficients from <math>x_2 \ldots x_8</math> will be multiples of <math>3</math> (since the numerator will have a <math>9</math>). Thus, the expression boils down to <math>x_0 + 10x_1 + 10x_9 + x_{10} \equiv 0 \mod 3</math>. Reduce to find that <math>x_0 + x_1 + x_9 + x_{10} \equiv 0 \mod 3</math>. Out of <math>x_0,\ x_1,\ x_9,\ x_{10}</math>, either all are equal to <math>0</math>, or three of them are equal to <math>1</math>. This gives <math>{4\choose0} + {4\choose3} = 1 + 4 = 5</math> possible combinations of numbers that work. |
− | The seven terms from <math> | + | The seven terms from <math>x_2 \ldots x_8</math> can assume either <math>0</math> or <math>1</math>, giving us <math>2^7</math> possibilities. The answer is therefore <math>5 \cdot 2^7 = \boxed{640}</math>. |
+ | |||
+ | == Note == | ||
+ | The specific induction process: we want to prove that if the bottom row is <math>x_0, x_1 \cdots x_{n}</math>, the top square is <math>{n\choose0}x_0 + {n\choose1}x_1 + {n\choose2}x_2 + \ldots {n\choose{n}}x_{n}</math>. | ||
+ | |||
+ | Base Case: when n = 1, this is obviously true. | ||
+ | |||
+ | Induction Step: Assume that the statement is true for n, and we wish to prove it for <math>n + 1</math>. Therefore, we add another row below the <math>n + 1</math> row, and name the squares as <math>a_0, a_1, \cdots a_{n+1}</math>. We obtain that <math>x_0 = a_0 + a_1, x_1 = a_1 + a_2, \cdots x_{n} = a_{n} + a_{n+1}</math>, and using the assumption, yield the top square equals <math>{n\choose0}(a_0 + a_1) + {n\choose1}(a_1 + a_2) + \ldots {n\choose{n}}(a_{n} + a_{n+1})</math>. While it's easy to prove that <math>{n\choose{k}} + {n\choose{k+1}} = {n+1\choose{k+1}}</math> (just expand it), we find that the two equations are identical. | ||
+ | |||
+ | Note contributed by MVP_Harry, friend me if you want ~ | ||
+ | |||
+ | Assume that the numbers filled in the 11th row is a b c d e f g h i j. Writing the number in each box, you will find that the coefficient of each letter turns out to be a pascal triangle. | ||
== See also == | == See also == | ||
Line 17: | Line 35: | ||
[[Category:Intermediate Combinatorics Problems]] | [[Category:Intermediate Combinatorics Problems]] | ||
+ | {{MAA Notice}} |
Revision as of 10:10, 22 January 2023
Contents
Problem
A triangular array of squares has one square in the first row, two in the second, and in general, squares in the th row for With the exception of the bottom row, each square rests on two squares in the row immediately below (illustrated in the given diagram). In each square of the eleventh row, a or a is placed. Numbers are then placed into the other squares, with the entry for each square being the sum of the entries in the two squares below it. For how many initial distributions of 's and 's in the bottom row is the number in the top square a multiple of ?
Solution
Label each of the bottom squares as .
Through induction, we can find that the top square is equal to . (This also makes sense based on a combinatorial argument: the number of ways a number can "travel" to the top position going only up is equal to the number of times it will be counted in the final sum.)
Examine the equation . All of the coefficients from will be multiples of (since the numerator will have a ). Thus, the expression boils down to . Reduce to find that . Out of , either all are equal to , or three of them are equal to . This gives possible combinations of numbers that work.
The seven terms from can assume either or , giving us possibilities. The answer is therefore .
Note
The specific induction process: we want to prove that if the bottom row is , the top square is .
Base Case: when n = 1, this is obviously true.
Induction Step: Assume that the statement is true for n, and we wish to prove it for . Therefore, we add another row below the row, and name the squares as . We obtain that , and using the assumption, yield the top square equals . While it's easy to prove that (just expand it), we find that the two equations are identical.
Note contributed by MVP_Harry, friend me if you want ~
Assume that the numbers filled in the 11th row is a b c d e f g h i j. Writing the number in each box, you will find that the coefficient of each letter turns out to be a pascal triangle.
See also
2007 AIME II (Problems • Answer Key • Resources) | ||
Preceded by Problem 12 |
Followed by Problem 14 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 | ||
All AIME Problems and Solutions |
The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions.