Difference between revisions of "2022 AMC 12B Problems/Problem 17"
(Created page with "==Problem== A bug starts at a vertex of a grid made of equilateral triangles of side length <math>1</math>. At each step the bug moves in one of the <math>6</math> possible d...") |
(→Problem) |
||
Line 1: | Line 1: | ||
==Problem== | ==Problem== | ||
− | + | How many <math>4 \times 4</math> arrays whose entries are 0s and 1s are there such that the row sums (the sum of the | |
+ | entries in each row) are 1, 2, 3, and 4, in some order, and the column sums (the sum of the entries in | ||
+ | each column) are also 1, 2, 3, and 4, in some order? For example, the array | ||
+ | <cmath> | ||
+ | \[ | ||
+ | \left[ | ||
+ | \begin{array}{cccc} | ||
+ | 1 & 1 & 1 & 0 \\ | ||
+ | 0 & 1 & 1 & 0 \\ | ||
+ | 1 & 1 & 1 & 1 \\ | ||
+ | 0 & 1 & 0 & 0 \\ | ||
+ | \end{array} | ||
+ | \right] | ||
+ | \] | ||
+ | </cmath> | ||
− | + | satisfies the condition. | |
− | |||
==Solution== | ==Solution== |
Revision as of 14:28, 17 November 2022
Problem
How many arrays whose entries are 0s and 1s are there such that the row sums (the sum of the entries in each row) are 1, 2, 3, and 4, in some order, and the column sums (the sum of the entries in each column) are also 1, 2, 3, and 4, in some order? For example, the array
satisfies the condition.
Solution
Let be the number of paths of moves such that the bug never will have been more than unit away from the starting position. Clearly, by symmetry, there are two possible states here, the bug being on the center and the bug being on one of the vertices of the unit hexagon around the center. Let be the number of paths with the aforementioned restriction that end on the center. Let be the number of paths with the aforementioned restriction that end on a vertex of the surrounding unit hexagon. We have since from the center, there are possible points to land to and from a vertex there are possible points to land to (the two adjacent vertices and the center). We also have , since to get to the center the bug must have come from a vertex, and since from a vertex there are two vertices to move to, and from the center there are vertices to move to. We can construct a recursion table using the base cases and and our recursive rules for and as follows: Then, and the desired probability is thus
-fidgetboss_4000