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