B Set 51 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 6. Follow the path: -3 → +9 → +3 → -2 → -10. What is the final value?",
                "answer": "3",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 13
                    },
                    {
                        "op": "-",
                        "operand": 10,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: -3 = 3; Step 2: +9 = 12; Step 3: +3 = 15; Step 4: -2 = 13; Step 5: -10 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: ×3 → +3 → -12 → +4 → +5. What is the final value?",
                "answer": "18",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 13
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 18
                    }
                ],
                "finalValue": 18,
                "pathDescription": "Step 1: ×3 = 18; Step 2: +3 = 21; Step 3: -12 = 9; Step 4: +4 = 13; Step 5: +5 = 18"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: ×2 → ×3 → -7 → -1 → ×2. What is the final value?",
                "answer": "20",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 11
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 20
                    }
                ],
                "finalValue": 20,
                "pathDescription": "Step 1: ×2 = 6; Step 2: ×3 = 18; Step 3: -7 = 11; Step 4: -1 = 10; Step 5: ×2 = 20"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 7. Follow the path: +2 → -5 → ×4 → +4 → +1. What is the final value?",
                "answer": "21",
                "startValue": 7,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 20
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 21
                    }
                ],
                "finalValue": 21,
                "pathDescription": "Step 1: +2 = 9; Step 2: -5 = 4; Step 3: ×4 = 16; Step 4: +4 = 20; Step 5: +1 = 21"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: -7 → -1 → +1 → -1 → ×4. What is the final value?",
                "answer": "0",
                "startValue": 8,
                "steps": [
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 0
                    }
                ],
                "finalValue": 0,
                "pathDescription": "Step 1: -7 = 1; Step 2: -1 = 0; Step 3: +1 = 1; Step 4: -1 = 0; Step 5: ×4 = 0"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×3 → -3 → -8 → ×2 → ×4. What is the final value?",
                "answer": "32",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 8,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    }
                ],
                "finalValue": 32,
                "pathDescription": "Step 1: ×3 = 15; Step 2: -3 = 12; Step 3: -8 = 4; Step 4: ×2 = 8; Step 5: ×4 = 32"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×3 → ×3 → -2 → +5 → -1. What is the final value?",
                "answer": "20",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 21
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 20
                    }
                ],
                "finalValue": 20,
                "pathDescription": "Step 1: ×3 = 6; Step 2: ×3 = 18; Step 3: -2 = 16; Step 4: +5 = 21; Step 5: -1 = 20"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×2 → ×3 → -11 → ×2 → ×4. What is the final value?",
                "answer": "8",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 11,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: ×2 = 4; Step 2: ×3 = 12; Step 3: -11 = 1; Step 4: ×2 = 2; Step 5: ×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"
}