B Set 13 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": "medium",
        "config": {
            "difficulty": "medium",
            "maxNumber": 10
        },
        "problems": [
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 3. Follow the path: +3 → ×4 → ×4 → -57. What is the final value?",
                "answer": "39",
                "startValue": 3,
                "steps": [
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 96
                    },
                    {
                        "op": "-",
                        "operand": 57,
                        "result": 39
                    }
                ],
                "finalValue": 39,
                "pathDescription": "Step 1: +3 = 6; Step 2: ×4 = 24; Step 3: ×4 = 96; Step 4: -57 = 39"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 3. Follow the path: -1 → +8 → +2 → +7. What is the final value?",
                "answer": "19",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 19
                    }
                ],
                "finalValue": 19,
                "pathDescription": "Step 1: -1 = 2; Step 2: +8 = 10; Step 3: +2 = 12; Step 4: +7 = 19"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 4. Follow the path: +1 → +6 → ×3 → +5. What is the final value?",
                "answer": "38",
                "startValue": 4,
                "steps": [
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 11
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 33
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 38
                    }
                ],
                "finalValue": 38,
                "pathDescription": "Step 1: +1 = 5; Step 2: +6 = 11; Step 3: ×3 = 33; Step 4: +5 = 38"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 9. Follow the path: +9 → ×4 → -36 → +6. What is the final value?",
                "answer": "42",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 72
                    },
                    {
                        "op": "-",
                        "operand": 36,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 42
                    }
                ],
                "finalValue": 42,
                "pathDescription": "Step 1: +9 = 18; Step 2: ×4 = 72; Step 3: -36 = 36; Step 4: +6 = 42"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 6. Follow the path: ×3 → ×4 → -1 → ×3. What is the final value?",
                "answer": "213",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 72
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 71
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 213
                    }
                ],
                "finalValue": 213,
                "pathDescription": "Step 1: ×3 = 18; Step 2: ×4 = 72; Step 3: -1 = 71; Step 4: ×3 = 213"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: ×2 → ×4 → ×2 → -37. What is the final value?",
                "answer": "43",
                "startValue": 5,
                "steps": [
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 10
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 40
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 80
                    },
                    {
                        "op": "-",
                        "operand": 37,
                        "result": 43
                    }
                ],
                "finalValue": 43,
                "pathDescription": "Step 1: ×2 = 10; Step 2: ×4 = 40; Step 3: ×2 = 80; Step 4: -37 = 43"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 4. Follow the path: -1 → +4 → ×3 → ×2. What is the final value?",
                "answer": "42",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 7
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 21
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 42
                    }
                ],
                "finalValue": 42,
                "pathDescription": "Step 1: -1 = 3; Step 2: +4 = 7; Step 3: ×3 = 21; Step 4: ×2 = 42"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "medium",
                "question": "Math Maze: Start at 5. Follow the path: -2 → +3 → +7 → +3. What is the final value?",
                "answer": "16",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 3
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "+",
                        "operand": 7,
                        "result": 13
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 16
                    }
                ],
                "finalValue": 16,
                "pathDescription": "Step 1: -2 = 3; Step 2: +3 = 6; Step 3: +7 = 13; Step 4: +3 = 16"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}