Solution to the Magic Square
My thought process in solving the Magic Square is as follows: 1) Since all rows, columns and diagonals must have values with a total of 15, then the number appearing in the center of the square must be used in the middle row, the middle column and the two diagonals, for a total of four different combinations involving this number. 2) Using the same observation as above, each of the four numbers that appear on the corners must be used three different combinations that total 15. 3) Lastly, the four remaining numbers (non-center, non-corner) are used in two different combinations. Therefore, I can solve this problem by writing down the possible combinations starting from 1: 1, 5, 9 1, 6, 8 2, 4, 9 2, 5, 8 2, 6, 7 4, 2, 9 4, 3, 8 4, 5, 6 5, 1, 9 5, 2, 8 5, 3, 7 5, 4, 6 .....etc. Once all combinations are listed (there's a pattern emerging that resembles how polynomials work), the number 5 is the only one that can be used in four combinations, so it must be the c...