Averages in a grid -- AMC 2012(Australian)

506 Views Asked by At

In the grid shown, we need to fill in the squares with numbers so that the number in every square, except for the corner ones, is the average of its neighbours. The edge squares have three neighbours, the others four.

grid

What is the value of the number in the square marked x?

My way is too hard: I set pronumerals a,b,c,d,e,f,g,h, and find all other cells expressions about x,a,b,c,d,e,f,g,h. for example, the top row, second column is (a+x+1000)/3, etc. Then I have Multivariate linear equations. It is too hard to solve it.

grid solve

Any one has a better method?

2

There are 2 best solutions below

0
On

Symmetry might suggest

 1000    .  0    .  -1000
  .      x  .   -x     .
  0      .  0    .     0
  .     -x  .    x     .
-1000    .  0    .   1000

and then

1000     y  0   -y  -1000
  y      x  0   -x    -y
  0      0  0    0     0
 -y     -x  0    x     y
-1000   -y  0    y   1000

in which case $y=\frac13(1000+x+0)$ and $x=\frac14(y+y+0+0)$

so $x=200$ and $y=400$

4
On

Put the origin in the centre and consider the function $xij$, where $i$ is the row index and $j$ the column index (counted from the centre). (Edit in response to the comments: This function specifies the values in the empty squares; it doesn’t apply to the values in the corners that are already filled in.) This has the desired properties. The condition for the squares next to the corners yields

$$ \frac13(1000+0+x)=2x $$

and thus $x=200$.