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