B Set 52 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 5. Follow the path: -4 → +1 → +7 → +10 → -1. What is the final value?",
                "answer": "18",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 19
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 18
                    }
                ],
                "finalValue": 18,
                "pathDescription": "Step 1: -4 = 1; Step 2: +1 = 2; Step 3: +7 = 9; Step 4: +10 = 19; Step 5: -1 = 18"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×2 → ×3 → ×2 → ×4 → ×4. What is the final value?",
                "answer": "384",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 96
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 384
                    }
                ],
                "finalValue": 384,
                "pathDescription": "Step 1: ×2 = 4; Step 2: ×3 = 12; Step 3: ×2 = 24; Step 4: ×4 = 96; Step 5: ×4 = 384"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -5 → +10 → ×2 → -3 → ×2. What is the final value?",
                "answer": "38",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 22
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 38
                    }
                ],
                "finalValue": 38,
                "pathDescription": "Step 1: -5 = 1; Step 2: +10 = 11; Step 3: ×2 = 22; Step 4: -3 = 19; Step 5: ×2 = 38"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: -1 → ×3 → -1 → ×3 → +10. What is the final value?",
                "answer": "16",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 16
                    }
                ],
                "finalValue": 16,
                "pathDescription": "Step 1: -1 = 1; Step 2: ×3 = 3; Step 3: -1 = 2; Step 4: ×3 = 6; Step 5: +10 = 16"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: ×3 → ×4 → +6 → +3 → +2. What is the final value?",
                "answer": "95",
                "startValue": 7,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 84
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 90
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 93
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 95
                    }
                ],
                "finalValue": 95,
                "pathDescription": "Step 1: ×3 = 21; Step 2: ×4 = 84; Step 3: +6 = 90; Step 4: +3 = 93; Step 5: +2 = 95"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: -4 → -2 → -3 → -1 → -1. What is the final value?",
                "answer": "-1",
                "startValue": 10,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    }
                ],
                "finalValue": -1,
                "pathDescription": "Step 1: -4 = 6; Step 2: -2 = 4; Step 3: -3 = 1; Step 4: -1 = 0; Step 5: -1 = -1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×3 → -7 → -3 → -2 → -4. What is the final value?",
                "answer": "11",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 27
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 17
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 11
                    }
                ],
                "finalValue": 11,
                "pathDescription": "Step 1: ×3 = 27; Step 2: -7 = 20; Step 3: -3 = 17; Step 4: -2 = 15; Step 5: -4 = 11"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: ×2 → ×2 → -21 → +8 → -8. What is the final value?",
                "answer": "15",
                "startValue": 9,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 36
                    },
                    {
                        "op": "-",
                        "operand": 21,
                        "result": 15
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 23
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 15
                    }
                ],
                "finalValue": 15,
                "pathDescription": "Step 1: ×2 = 18; Step 2: ×2 = 36; Step 3: -21 = 15; Step 4: +8 = 23; Step 5: -8 = 15"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}