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