B Set 54 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 6. Follow the path: ×4 → -19 → +5 → +3 → ×2. What is the final value?",
                "answer": "26",
                "startValue": 6,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 24
                    },
                    {
                        "op": "-",
                        "operand": 19,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 10
                    },
                    {
                        "op": "+",
                        "operand": 3,
                        "result": 13
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 26
                    }
                ],
                "finalValue": 26,
                "pathDescription": "Step 1: ×4 = 24; Step 2: -19 = 5; Step 3: +5 = 10; Step 4: +3 = 13; Step 5: ×2 = 26"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: ×4 → +6 → ×3 → -53 → ×3. What is the final value?",
                "answer": "3",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 54
                    },
                    {
                        "op": "-",
                        "operand": 53,
                        "result": 1
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 3
                    }
                ],
                "finalValue": 3,
                "pathDescription": "Step 1: ×4 = 12; Step 2: +6 = 18; Step 3: ×3 = 54; Step 4: -53 = 1; Step 5: ×3 = 3"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 8. Follow the path: ×4 → +5 → ×3 → -38 → -58. What is the final value?",
                "answer": "15",
                "startValue": 8,
                "steps": [
                    {
                        "op": "×",
                        "operand": 4,
                        "result": 32
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 37
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 111
                    },
                    {
                        "op": "-",
                        "operand": 38,
                        "result": 73
                    },
                    {
                        "op": "-",
                        "operand": 58,
                        "result": 15
                    }
                ],
                "finalValue": 15,
                "pathDescription": "Step 1: ×4 = 32; Step 2: +5 = 37; Step 3: ×3 = 111; Step 4: -38 = 73; Step 5: -58 = 15"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: -1 → +6 → -4 → +6 → ×3. What is the final value?",
                "answer": "24",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 6
                    },
                    {
                        "op": "-",
                        "operand": 4,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 8
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 24
                    }
                ],
                "finalValue": 24,
                "pathDescription": "Step 1: -1 = 0; Step 2: +6 = 6; Step 3: -4 = 2; Step 4: +6 = 8; Step 5: ×3 = 24"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 1. Follow the path: -1 → -1 → -1 → -1 → -1. What is the final value?",
                "answer": "-4",
                "startValue": 1,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 0
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -1
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -2
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": -4
                    }
                ],
                "finalValue": -4,
                "pathDescription": "Step 1: -1 = 0; Step 2: -1 = -1; Step 3: -1 = -2; Step 4: -1 = -3; Step 5: -1 = -4"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 3. Follow the path: ×3 → +9 → -12 → ×2 → +6. What is the final value?",
                "answer": "18",
                "startValue": 3,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 9
                    },
                    {
                        "op": "+",
                        "operand": 9,
                        "result": 18
                    },
                    {
                        "op": "-",
                        "operand": 12,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 12
                    },
                    {
                        "op": "+",
                        "operand": 6,
                        "result": 18
                    }
                ],
                "finalValue": 18,
                "pathDescription": "Step 1: ×3 = 9; Step 2: +9 = 18; Step 3: -12 = 6; Step 4: ×2 = 12; Step 5: +6 = 18"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 6. Follow the path: -1 → +4 → -7 → +1 → -1. What is the final value?",
                "answer": "2",
                "startValue": 6,
                "steps": [
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 5
                    },
                    {
                        "op": "+",
                        "operand": 4,
                        "result": 9
                    },
                    {
                        "op": "-",
                        "operand": 7,
                        "result": 2
                    },
                    {
                        "op": "+",
                        "operand": 1,
                        "result": 3
                    },
                    {
                        "op": "-",
                        "operand": 1,
                        "result": 2
                    }
                ],
                "finalValue": 2,
                "pathDescription": "Step 1: -1 = 5; Step 2: +4 = 9; Step 3: -7 = 2; Step 4: +1 = 3; Step 5: -1 = 2"
            },
            {
                "type": "math-maze",
                "subType": "math-maze",
                "difficulty": "hard",
                "question": "Math Maze: Start at 2. Follow the path: ×3 → ×3 → ×2 → +5 → ×2. What is the final value?",
                "answer": "82",
                "startValue": 2,
                "steps": [
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 6
                    },
                    {
                        "op": "×",
                        "operand": 3,
                        "result": 18
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 36
                    },
                    {
                        "op": "+",
                        "operand": 5,
                        "result": 41
                    },
                    {
                        "op": "×",
                        "operand": 2,
                        "result": 82
                    }
                ],
                "finalValue": 82,
                "pathDescription": "Step 1: ×3 = 6; Step 2: ×3 = 18; Step 3: ×2 = 36; Step 4: +5 = 41; Step 5: ×2 = 82"
            }
        ],
        "layout": {
            "columns": 2,
            "problemsPerPage": 20
        }
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}