B Set 33 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": "hard",
        "config": {
            "difficulty": "hard",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -1 → ×4 → ×2 → -11 → -3. What is the final value?",
                "answer": "2",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -1 = 2; Step 2: ×4 = 8; Step 3: ×2 = 16; Step 4: -11 = 5; Step 5: -3 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: -1 → +10 → -6 → +9 → ×4. What is the final value?",
                "answer": "52",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 4
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 52
                    }
                ],
                "finalValue": 52,
                "pathDescription": "Step 1: -1 = 0; Step 2: +10 = 10; Step 3: -6 = 4; Step 4: +9 = 13; Step 5: ×4 = 52"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: +8 → -2 → -6 → ×3 → +5. What is the final value?",
                "answer": "8",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 7
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: +8 = 9; Step 2: -2 = 7; Step 3: -6 = 1; Step 4: ×3 = 3; Step 5: +5 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +8 → -12 → ×4 → -1 → ×2. What is the final value?",
                "answer": "14",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    }
                ],
                "finalValue": 14,
                "pathDescription": "Step 1: +8 = 14; Step 2: -12 = 2; Step 3: ×4 = 8; Step 4: -1 = 7; Step 5: ×2 = 14"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: -1 → +10 → -8 → +9 → ×2. What is the final value?",
                "answer": "22",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    }
                ],
                "finalValue": 22,
                "pathDescription": "Step 1: -1 = 0; Step 2: +10 = 10; Step 3: -8 = 2; Step 4: +9 = 11; Step 5: ×2 = 22"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +2 → ×3 → -30 → ×2 → -1. What is the final value?",
                "answer": "5",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 33
                    },
                    {
                        "op": "-",
                        "operand": 30,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    }
                ],
                "finalValue": 5,
                "pathDescription": "Step 1: +2 = 11; Step 2: ×3 = 33; Step 3: -30 = 3; Step 4: ×2 = 6; Step 5: -1 = 5"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×3 → ×4 → -112 → ×2 → ×2. What is the final value?",
                "answer": "32",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 120
                    },
                    {
                        "op": "-",
                        "operand": 112,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 32
                    }
                ],
                "finalValue": 32,
                "pathDescription": "Step 1: ×3 = 30; Step 2: ×4 = 120; Step 3: -112 = 8; Step 4: ×2 = 16; Step 5: ×2 = 32"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: ×2 → -18 → +9 → -8 → ×2. What is the final value?",
                "answer": "6",
                "startValue": 10,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 18,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    }
                ],
                "finalValue": 6,
                "pathDescription": "Step 1: ×2 = 20; Step 2: -18 = 2; Step 3: +9 = 11; Step 4: -8 = 3; Step 5: ×2 = 6"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}