Ten people stand in a circle. Each chooses a number and tells the person to their left and right. Each person averages the two numbers they heard and they go in a circle announcing the average of their numbers which are recorded in this “circle.” What number did the person who had an average of 6 choose?
Although this problem can be solved with a system, is there any logical way to find the answer without a calculator and minimal work? I’ve been trying to figure the answer out and apparently there is an ‘elegant’ solution, but I don’t know what it is.
Thanks.!
Edit: here’s the work if I solved the problem as a system
variables per person
This question was also asked here, where many solutions are given. Here is mine.
Let $g_n$ be the number the $n$th person picked, so that $(g_{n-1}+g_{n+1})/2=n$ for $1\le n\le 10$ (where indices wrap around the circle, so $g_0=g_{10})$. Then $$ \begin{align} g_6 &= (g_6-g_4)/2 + (g_6+g_4)/2\\ &= (g_6+(g_8-g_8)+(-g_{10}+g_{10})+(g_2-g_2)-g_4)/2 + (g_6+g_4)/2\\ &= (g_6+g_8)/2 -(g_8+g_{10})/2+(g_{10}+g_2)/2-(g_2+g_4)/2+(g_6+g_4)/2\\ &= 7-9+1-3+5=\boxed{1} \end{align} $$
The insight that leads to this proof is that in the circular arrangement $(g_2,g_4,g_6,g_8,g_{10})$, you know what the sum of any two adjacent numbers are. You can tile this circle with "dominos" in two ways; one where every number is covered once except for $g_6$ which is covered twice, and one where every number is covered once except for $g_6$ which is uncovered. Subtracting these two tilings gives you the value of $g_6$.