Problem Background : A 3x3 magic square is an arrangement of 9 squares arranged in 3 rows and 3 columns. We are given a sum S which is the sum of any row or column. We need to arrange 9 consecutive integers in the square.
Solution : If the sum of a row is S, S also needs to be the sum of any other row or any other column.
Derived corollary : It can be noted that for the numbers in individual squares to be integers, S must be divisible by 3, i.e. S must be 0(mod3) and S must be greater than 12.
The above result can be derived from Magic Squares 1 :
© Rishabh Bidya
Solution : If the sum of a row is S, S also needs to be the sum of any other row or any other column.
Derived corollary : It can be noted that for the numbers in individual squares to be integers, S must be divisible by 3, i.e. S must be 0(mod3) and S must be greater than 12.
The above result can be derived from Magic Squares 1 :
After this, we merely substitute for a and simplify.
Q.E.D
© Rishabh Bidya