B Set 72 Unknown

This page uses a content type that does not have a custom renderer yet. Raw structured data is shown below.

{
    "contentData": {
        "operation": "magic-square",
        "subject": "arithmetic",
        "difficulty": "hard",
        "gridSize": 5,
        "config": {
            "gridSize": 5,
            "difficulty": "hard",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "magic-square",
                "subType": "magic-square",
                "difficulty": "hard",
                "question": "Complete the magic square. Each row, column, and diagonal must sum to 42. Grid: [11 _ _ | _ 14 _ | _ 10 _]",
                "answer": "11 18 13 | 16 14 12 | 15 10 17",
                "grid": [
                    [
                        11,
                        null,
                        null
                    ],
                    [
                        null,
                        14,
                        null
                    ],
                    [
                        null,
                        10,
                        null
                    ]
                ],
                "solvedGrid": [
                    [
                        11,
                        18,
                        13
                    ],
                    [
                        16,
                        14,
                        12
                    ],
                    [
                        15,
                        10,
                        17
                    ]
                ],
                "magicConstant": 42
            },
            {
                "type": "magic-square",
                "subType": "magic-square",
                "difficulty": "hard",
                "question": "Complete the magic square. Each row, column, and diagonal must sum to 33. Grid: [8 _ _ | _ _ _ | 10 9 _]",
                "answer": "8 13 12 | 15 11 7 | 10 9 14",
                "grid": [
                    [
                        8,
                        null,
                        null
                    ],
                    [
                        null,
                        null,
                        null
                    ],
                    [
                        10,
                        9,
                        null
                    ]
                ],
                "solvedGrid": [
                    [
                        8,
                        13,
                        12
                    ],
                    [
                        15,
                        11,
                        7
                    ],
                    [
                        10,
                        9,
                        14
                    ]
                ],
                "magicConstant": 33
            },
            {
                "type": "magic-square",
                "subType": "magic-square",
                "difficulty": "hard",
                "question": "Complete the magic square. Each row, column, and diagonal must sum to 24. Grid: [_ _ 5 | _ _ _ | _ 4 9]",
                "answer": "7 12 5 | 6 8 10 | 11 4 9",
                "grid": [
                    [
                        null,
                        null,
                        5
                    ],
                    [
                        null,
                        null,
                        null
                    ],
                    [
                        null,
                        4,
                        9
                    ]
                ],
                "solvedGrid": [
                    [
                        7,
                        12,
                        5
                    ],
                    [
                        6,
                        8,
                        10
                    ],
                    [
                        11,
                        4,
                        9
                    ]
                ],
                "magicConstant": 24
            },
            {
                "type": "magic-square",
                "subType": "magic-square",
                "difficulty": "hard",
                "question": "Complete the magic square. Each row, column, and diagonal must sum to 15. Grid: [_ 9 4 | _ _ _ | _ 1 _]",
                "answer": "2 9 4 | 7 5 3 | 6 1 8",
                "grid": [
                    [
                        null,
                        9,
                        4
                    ],
                    [
                        null,
                        null,
                        null
                    ],
                    [
                        null,
                        1,
                        null
                    ]
                ],
                "solvedGrid": [
                    [
                        2,
                        9,
                        4
                    ],
                    [
                        7,
                        5,
                        3
                    ],
                    [
                        6,
                        1,
                        8
                    ]
                ],
                "magicConstant": 15
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}