B Set 53 Unknown

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

{
    "contentData": {
        "operation": "math-maze",
        "subject": "arithmetic",
        "difficulty": "easy",
        "config": {
            "difficulty": "easy",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 6. Follow the path: -3 → -2 → ×4. What is the final value?",
                "answer": "4",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    }
                ],
                "finalValue": 4,
                "pathDescription": "Step 1: -3 = 3; Step 2: -2 = 1; Step 3: ×4 = 4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 9. Follow the path: +2 → ×2 → +4. What is the final value?",
                "answer": "26",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 26
                    }
                ],
                "finalValue": 26,
                "pathDescription": "Step 1: +2 = 11; Step 2: ×2 = 22; Step 3: +4 = 26"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 8. Follow the path: ×3 → ×2 → +10. What is the final value?",
                "answer": "58",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 48
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 58
                    }
                ],
                "finalValue": 58,
                "pathDescription": "Step 1: ×3 = 24; Step 2: ×2 = 48; Step 3: +10 = 58"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 4. Follow the path: -3 → ×2 → -1. What is the final value?",
                "answer": "1",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: -3 = 1; Step 2: ×2 = 2; Step 3: -1 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 9. Follow the path: ×3 → +7 → +8. What is the final value?",
                "answer": "42",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 34
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 42
                    }
                ],
                "finalValue": 42,
                "pathDescription": "Step 1: ×3 = 27; Step 2: +7 = 34; Step 3: +8 = 42"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 3. Follow the path: -2 → +1 → +9. What is the final value?",
                "answer": "11",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 11
                    }
                ],
                "finalValue": 11,
                "pathDescription": "Step 1: -2 = 1; Step 2: +1 = 2; Step 3: +9 = 11"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 4. Follow the path: ×2 → ×2 → ×4. What is the final value?",
                "answer": "64",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 64
                    }
                ],
                "finalValue": 64,
                "pathDescription": "Step 1: ×2 = 8; Step 2: ×2 = 16; Step 3: ×4 = 64"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "easy",
                "question": "Math Maze: Start at 9. Follow the path: -4 → -3 → ×4. What is the final value?",
                "answer": "8",
                "startValue": 9,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -4 = 5; Step 2: -3 = 2; Step 3: ×4 = 8"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}