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