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