B Set 42 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 2. Follow the path: -1 → ×4 → -2 → ×4 → +3. What is the final value?",
                "answer": "11",
                "startValue": 2,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 8
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 11
                    }
                ],
                "finalValue": 11,
                "pathDescription": "Step 1: -1 = 1; Step 2: ×4 = 4; Step 3: -2 = 2; Step 4: ×4 = 8; Step 5: +3 = 11"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 5. Follow the path: -4 → ×3 → ×3 → +10 → ×3. What is the final value?",
                "answer": "57",
                "startValue": 5,
                "steps": [
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 19
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 57
                    }
                ],
                "finalValue": 57,
                "pathDescription": "Step 1: -4 = 1; Step 2: ×3 = 3; Step 3: ×3 = 9; Step 4: +10 = 19; Step 5: ×3 = 57"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: -1 → +10 → +2 → -4 → -1. What is the final value?",
                "answer": "9",
                "startValue": 3,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 10,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 10
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 9
                    }
                ],
                "finalValue": 9,
                "pathDescription": "Step 1: -1 = 2; Step 2: +10 = 12; Step 3: +2 = 14; Step 4: -4 = 10; Step 5: -1 = 9"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: -3 → ×3 → -2 → ×4 → ×2. What is the final value?",
                "answer": "8",
                "startValue": 4,
                "steps": [
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 4
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 8
                    }
                ],
                "finalValue": 8,
                "pathDescription": "Step 1: -3 = 1; Step 2: ×3 = 3; Step 3: -2 = 1; Step 4: ×4 = 4; Step 5: ×2 = 8"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×3 → -5 → +3 → -2 → -1. What is the final value?",
                "answer": "1",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 5,
                        "result": 1
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 4
                    },
                    {
                        "op": "-",
                        "operand": 2,
                        "result": 2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 1
                    }
                ],
                "finalValue": 1,
                "pathDescription": "Step 1: ×3 = 6; Step 2: -5 = 1; Step 3: +3 = 4; Step 4: -2 = 2; Step 5: -1 = 1"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 9. Follow the path: +6 → -3 → +2 → ×3 → -19. What is the final value?",
                "answer": "23",
                "startValue": 9,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 15
                    },
                    {
                        "op": "-",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 42
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 23
                    }
                ],
                "finalValue": 23,
                "pathDescription": "Step 1: +6 = 15; Step 2: -3 = 12; Step 3: +2 = 14; Step 4: ×3 = 42; Step 5: -19 = 23"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: +6 → +2 → ×4 → +1 → +8. What is the final value?",
                "answer": "65",
                "startValue": 6,
                "steps": [
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 2,
                        "result": 14
                    },
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 56
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 57
                    },
                    {
                        "op": "+",
                        "operand": 8,
                        "result": 65
                    }
                ],
                "finalValue": 65,
                "pathDescription": "Step 1: +6 = 12; Step 2: +2 = 14; Step 3: ×4 = 56; Step 4: +1 = 57; Step 5: +8 = 65"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 4. Follow the path: ×3 → ×2 → -6 → +5 → +5. What is the final value?",
                "answer": "28",
                "startValue": 4,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 12
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 6,
                        "result": 18
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 23
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 28
                    }
                ],
                "finalValue": 28,
                "pathDescription": "Step 1: ×3 = 12; Step 2: ×2 = 24; Step 3: -6 = 18; Step 4: +5 = 23; Step 5: +5 = 28"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}