B Set 25 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: ×2 → -2 → +2 → -4 → ×4. What is the final value?",
                "answer": "24",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: ×2 = 10; Step 2: -2 = 8; Step 3: +2 = 10; Step 4: -4 = 6; Step 5: ×4 = 24"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: ×4 → +1 → ×3 → +1 → ×2. What is the final value?",
                "answer": "152",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 25
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 75
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 76
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 152
                    }
                ],
                "finalValue": 152,
                "pathDescription": "Step 1: ×4 = 24; Step 2: +1 = 25; Step 3: ×3 = 75; Step 4: +1 = 76; Step 5: ×2 = 152"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: +5 → +2 → -2 → +10 → +10. What is the final value?",
                "answer": "26",
                "startValue": 1,
                "steps": [
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 8
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 16
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 26
                    }
                ],
                "finalValue": 26,
                "pathDescription": "Step 1: +5 = 6; Step 2: +2 = 8; Step 3: -2 = 6; Step 4: +10 = 16; Step 5: +10 = 26"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: -2 → ×3 → -1 → -4 → +2. What is the final value?",
                "answer": "3",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: -2 = 2; Step 2: ×3 = 6; Step 3: -1 = 5; Step 4: -4 = 1; Step 5: +2 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +1 → +3 → +10 → -18 → ×4. What is the final value?",
                "answer": "8",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 7
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 20
                    },
                    {
                        "op": "-",
                        "operand": 18,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: +1 = 7; Step 2: +3 = 10; Step 3: +10 = 20; Step 4: -18 = 2; Step 5: ×4 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: ×2 → ×3 → +8 → +1 → ×3. What is the final value?",
                "answer": "117",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 30
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 38
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 39
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 117
                    }
                ],
                "finalValue": 117,
                "pathDescription": "Step 1: ×2 = 10; Step 2: ×3 = 30; Step 3: +8 = 38; Step 4: +1 = 39; Step 5: ×3 = 117"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: ×2 → -1 → +10 → +10 → ×2. What is the final value?",
                "answer": "42",
                "startValue": 1,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 11
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 42
                    }
                ],
                "finalValue": 42,
                "pathDescription": "Step 1: ×2 = 2; Step 2: -1 = 1; Step 3: +10 = 11; Step 4: +10 = 21; Step 5: ×2 = 42"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 10. Follow the path: +2 → -5 → ×2 → ×4 → -46. What is the final value?",
                "answer": "10",
                "startValue": 10,
                "steps": [
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "-",
                        "operand": 46,
                        "result": 10
                    }
                ],
                "finalValue": 10,
                "pathDescription": "Step 1: +2 = 12; Step 2: -5 = 7; Step 3: ×2 = 14; Step 4: ×4 = 56; Step 5: -46 = 10"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}