medium 5×5 Set 100 Form Exercise

Complete the magic square. Each row, column, and diagonal must sum to 33. Grid: [12 _ 8 | _ 11 _ | _ _ 10]

Show answer

Answer: 12 13 8 | 7 11 15 | 14 9 10

SubType
magic-square
Difficulty
medium
Grid
  • [12,null,8]
  • [null,11,null]
  • [null,null,10]
SolvedGrid
  • [12,13,8]
  • [7,11,15]
  • [14,9,10]
MagicConstant
33

Complete the magic square. Each row, column, and diagonal must sum to 15. Grid: [6 _ _ | 7 _ _ | _ 9 4]

Show answer

Answer: 6 1 8 | 7 5 3 | 2 9 4

SubType
magic-square
Difficulty
medium
Grid
  • [6,null,null]
  • [7,null,null]
  • [null,9,4]
SolvedGrid
  • [6,1,8]
  • [7,5,3]
  • [2,9,4]
MagicConstant
15

Complete the magic square. Each row, column, and diagonal must sum to 42. Grid: [_ _ _ | 16 14 12 | 11 _ _]

Show answer

Answer: 15 10 17 | 16 14 12 | 11 18 13

SubType
magic-square
Difficulty
medium
Grid
  • [null,null,null]
  • [16,14,12]
  • [11,null,null]
SolvedGrid
  • [15,10,17]
  • [16,14,12]
  • [11,18,13]
MagicConstant
42

Complete the magic square. Each row, column, and diagonal must sum to 15. Grid: [_ 9 4 | _ _ 3 | 6 _ _]

Show answer

Answer: 2 9 4 | 7 5 3 | 6 1 8

SubType
magic-square
Difficulty
medium
Grid
  • [null,9,4]
  • [null,null,3]
  • [6,null,null]
SolvedGrid
  • [2,9,4]
  • [7,5,3]
  • [6,1,8]
MagicConstant
15