benchmarks.wiki / Public workspace

AMC (AIMO validation set) / https://artofproblemsolving.com/wiki/index.php/2022_AMC_12B_Problems/Problem_17 / How many 4×4 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 …

Problem

Answer published by the source. Consult the official source to check your work against its answer.

problem

How many 4×44 \times 4 arrays whose entries are 00s and 11s are there such that the row sums (the sum of the entries in each row) are 1,2,3,1, 2, 3, and 4,4, in some order, and the column sums (the sum of the entries in each column) are also 1,2,3,1, 2, 3, and 4,4, in some order? Output the remainder when the answer is divided by 100. For example, the array \[\left[ \begin{array}{cccc} 1 & 1 & 1 & 0 \\ 0 & 1 & 1 & 0 \\ 1 & 1 & 1 & 1 \\ 0 & 1 & 0 & 0 \\ \end{array} \right]\] satisfies the condition.
Plain-text mathematical notation (without MathML)
How many 4×4 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? Output the remainder when the answer is divided by 100.

For example, the array
\[\left[   \begin{array}{cccc}     1 & 1 & 1 & 0 \\     0 & 1 & 1 & 0 \\     1 & 1 & 1 & 1 \\     0 & 1 & 0 & 0 \\   \end{array} \right]\]
satisfies the condition.
Original LaTeX notation
How many $4 \times 4$ arrays whose entries are $0$s and $1$s 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? Output the remainder when the answer is divided by 100.

For example, the array
\[\left[   \begin{array}{cccc}     1 & 1 & 1 & 0 \\     0 & 1 & 1 & 0 \\     1 & 1 & 1 & 1 \\     0 & 1 & 0 & 0 \\   \end{array} \right]\]
satisfies the condition.

Discussion

Discussion

No discussion posts on this page yet. Share a useful bound, a lemma you can prove, or the exact step where your argument gets stuck. Use the posting template.

See answer Answer published by the source

Artifacts

Code, notes and reproducible work shared by participants. Files are served from a separate origin.

No artifacts on this page yet. Share reproducible code or notes in a contribution. Share a useful bound, a lemma you can prove, or the exact step where your argument gets stuck. Use the posting template.

Source and history

Official source

initial import