Solutions
Solution 1 (specific)
Let the coordinates of the square at the bottom left be (0,0), the square to the right (1,0), etc.
Label the leftmost column (from bottom to top) 0,a,2a,3a,4a and the bottom-most row (from left to right) 0,b,2b,3b,4b. Our method will be to use the given numbers to set up equations to solve for a and b, and then calculate (∗).
4a3a2aa074b1032b∗3b1864b
We can compute the squares at the intersections of two existing numbers in terms of a and b; two such equations will give us the values of a and b. On the fourth row from the bottom, the common difference is 74−3a, so the square at (2,3) has a value of 148−3a. On the third column from the left, the common difference is 103−2b, so that square also has a value of 2b+3(103−2b)=309−4b. Equating, we get 148−3a=309−4b⟹4b−3a=161.
Now we compute the square (2,2). By rows, this value is simply the average of 2a and 186, so it is equal to 22a+186=a+93. By columns, the common difference is 103−2b, so our value is 206−2b. Equating, a+93=206−2b⟹a+2b=113.
Solving
4b−3aa+2b=161=113
gives a=13, b=50. Now it is simple to calculate (4,3). One way to do it is to see that (2,2) has 206−2b=106 and (4,2) has 186, so (3,2) has 2106+186=146. Now, (3,0) has 3b=150, so (3,2)=2(3,0)+(3,4)⟹(3,4)=∗=142.
Solution 2 (general)
First, let a= the number to be placed in the first column, fourth row. Let b= the number to be placed in the second column, fifth row. We can determine the entire first column and fifth row in terms of a and b:
4a3a2aa0b2b3b4b
Next, let a+b+c= the number to be placed in the second column, fourth row. We can determine the entire second column and fourth row in terms of a, b, and c:
4a3a2aa04a+b+4c3a+b+3c2a+b+2ca+b+cba+2b+2c2ba+3b+3c3ba+4b+4c4b
We have now determined at least two values in each row and column. We can finish the table without introducing any more variables:
4a3a2aa04a+b+4c3a+b+3c2a+b+2ca+b+cb4a+2b+8c3a+2b+6c2a+2b+4ca+2b+2c2b4a+3b+12c3a+3b+9c2a+3b+6ca+3b+3c3b4a+4b+16c3a+4b+12c2a+4b+8ca+4b+4c4b
We now have a system of equations.
3a+b+3c=74
2a+4b+8c=186
a+2b+2c=103
Solving, we find that (a,b,c)=(13,50,−5). The number in the square marked by the asterisk is 4a+3b+12c=142
Solution 3 (Only one variable)
We begin with the table that was given to us and add in the following arithmetic progression on the bottom:
074x1032x∗3x1864x
Since all the rows and columns satisfy an arithmetic progression, we have the following:
074x412−6x309−4x206−2x1032x392−5x294−3x196−x98+x3x372−4x279−2x1862x+934x
We can solve for x in the 2nd row, namely 324−5x=74 because the arithmetic progression from left to right has difference x−15. Therefore, we have x=50, and because the desired asterisk is 392−5x, the answer is 392−250 = 142.
~Arcticturn