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