MathDB

Problems(1)

numbers 1-9 over the nine squares of a 3x3 table

Source: Dutch NMO 2020 p1

11/23/2020
Daan distributes the numbers 11 to 99 over the nine squares of a 3×33\times 3-table (each square receives exactly one number). Then, in each row, Daan circles the median number (the number that is neither the smallest nor the largest of the three). For example, if the numbers 8,18, 1, and 22 are in one row, he circles the number 22. He does the same for each column and each of the two diagonals. If a number is already circled, he does not circle it again. He calls the result of this process a median table. Above, you can see a median table that has 55 circled numbers. (a) What is the smallest possible number of circled numbers in a median table? Prove that a smaller number is not possible and give an example in which a minimum number of numbers is circled. (b) What is the largest possible number of circled numbers in a median table? Prove that a larger number is not possible and give an example in which a maximum number of numbers is circled.
[asy] unitsize (0.8 cm);
int i;
for (i = 0; i <= 3; ++i) { draw((0,i)--(3,i)); draw((i,0)--(i,3)); }
draw(Circle((0.5,2.5),0.3)); draw(Circle((2.5,2.5),0.3)); draw(Circle((1.5,1.5),0.3)); draw(Circle((2.5,1.5),0.3)); draw(Circle((1.5,0.5),0.3));
label("88", (0.5,2.5)); label("11", (1.5,2.5)); label("22", (2.5,2.5)); label("77", (0.5,1.5)); label("66", (1.5,1.5)); label("33", (2.5,1.5)); label("99", (0.5,0.5)); label("55", (1.5,0.5)); label("44", (2.5,0.5)); [/asy]
combinatorics