easy Set 42 Form Exercise

This page uses a content type that does not have a custom renderer yet. Raw structured data is shown below.

{
    "outputTargets": {
        "screen": true,
        "print": true,
        "pdf": true,
        "answerKey": true
    },
    "_meta": {
        "nodeId": "node-1-maze-add-easy",
        "pageNumber": 42,
        "generatedAt": "2026-03-16T15:21:32.400Z",
        "generatorVersion": "v7.2.1-wp-g2",
        "seed": "9b89696a9bfef2d8",
        "seedInput": "1|node-1-maze-add-easy|42|1.0.0|",
        "schemaVersion": "2.0.0",
        "mathTemplateId": null,
        "archetype": "form-exercise",
        "siteId": 1
    },
    "semantics": {
        "solvability": {
            "isDeterministic": true,
            "solutionCount": 1
        },
        "difficulty": {
            "declaredLevel": "easy",
            "computedScore": 26,
            "metrics": {
                "problemCount": 8,
                "operation": "math-maze",
                "digits": 2,
                "regrouping": false
            }
        },
        "diversity": {
            "structuralHash": "547a4e6270e51d63b23b982097aa8386",
            "contentFingerprint": "ac9bb221e1a391f9"
        },
        "interaction": {
            "checkable": true,
            "revealable": true,
            "randomizable": true,
            "hintable": false,
            "progressable": true,
            "inputType": [
                "text-input"
            ]
        }
    },
    "version": "2.0",
    "generatorId": "arithmetic-generator-v7.2.1",
    "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 5. Follow the path: ×2 → ×3 → ×4. What is the final value?",
            "answer": "120",
            "startValue": 5,
            "steps": [
                {
                    "op": "×",
                    "operand": 2,
                    "result": 10
                },
                {
                    "op": "×",
                    "operand": 3,
                    "result": 30
                },
                {
                    "op": "×",
                    "operand": 4,
                    "result": 120
                }
            ],
            "finalValue": 120,
            "pathDescription": "Step 1: ×2 = 10; Step 2: ×3 = 30; Step 3: ×4 = 120"
        },
        {
            "type": "math-maze",
            "subType": "math-maze",
            "difficulty": "easy",
            "question": "Math Maze: Start at 1. Follow the path: +7 → ×2 → +9. What is the final value?",
            "answer": "25",
            "startValue": 1,
            "steps": [
                {
                    "op": "+",
                    "operand": 7,
                    "result": 8
                },
                {
                    "op": "×",
                    "operand": 2,
                    "result": 16
                },
                {
                    "op": "+",
                    "operand": 9,
                    "result": 25
                }
            ],
            "finalValue": 25,
            "pathDescription": "Step 1: +7 = 8; Step 2: ×2 = 16; Step 3: +9 = 25"
        },
        {
            "type": "math-maze",
            "subType": "math-maze",
            "difficulty": "easy",
            "question": "Math Maze: Start at 8. Follow the path: -4 → ×2 → ×3. What is the final value?",
            "answer": "24",
            "startValue": 8,
            "steps": [
                {
                    "op": "-",
                    "operand": 4,
                    "result": 4
                },
                {
                    "op": "×",
                    "operand": 2,
                    "result": 8
                },
                {
                    "op": "×",
                    "operand": 3,
                    "result": 24
                }
            ],
            "finalValue": 24,
            "pathDescription": "Step 1: -4 = 4; Step 2: ×2 = 8; Step 3: ×3 = 24"
        },
        {
            "type": "math-maze",
            "subType": "math-maze",
            "difficulty": "easy",
            "question": "Math Maze: Start at 5. Follow the path: +9 → -11 → -1. What is the final value?",
            "answer": "2",
            "startValue": 5,
            "steps": [
                {
                    "op": "+",
                    "operand": 9,
                    "result": 14
                },
                {
                    "op": "-",
                    "operand": 11,
                    "result": 3
                },
                {
                    "op": "-",
                    "operand": 1,
                    "result": 2
                }
            ],
            "finalValue": 2,
            "pathDescription": "Step 1: +9 = 14; Step 2: -11 = 3; Step 3: -1 = 2"
        },
        {
            "type": "math-maze",
            "subType": "math-maze",
            "difficulty": "easy",
            "question": "Math Maze: Start at 9. Follow the path: -5 → +7 → -7. What is the final value?",
            "answer": "4",
            "startValue": 9,
            "steps": [
                {
                    "op": "-",
                    "operand": 5,
                    "result": 4
                },
                {
                    "op": "+",
                    "operand": 7,
                    "result": 11
                },
                {
                    "op": "-",
                    "operand": 7,
                    "result": 4
                }
            ],
            "finalValue": 4,
            "pathDescription": "Step 1: -5 = 4; Step 2: +7 = 11; Step 3: -7 = 4"
        },
        {
            "type": "math-maze",
            "subType": "math-maze",
            "difficulty": "easy",
            "question": "Math Maze: Start at 2. Follow the path: -1 → -1 → -1. What is the final value?",
            "answer": "-1",
            "startValue": 2,
            "steps": [
                {
                    "op": "-",
                    "operand": 1,
                    "result": 1
                },
                {
                    "op": "-",
                    "operand": 1,
                    "result": 0
                },
                {
                    "op": "-",
                    "operand": 1,
                    "result": -1
                }
            ],
            "finalValue": -1,
            "pathDescription": "Step 1: -1 = 1; Step 2: -1 = 0; Step 3: -1 = -1"
        },
        {
            "type": "math-maze",
            "subType": "math-maze",
            "difficulty": "easy",
            "question": "Math Maze: Start at 8. Follow the path: +3 → ×3 → +7. What is the final value?",
            "answer": "40",
            "startValue": 8,
            "steps": [
                {
                    "op": "+",
                    "operand": 3,
                    "result": 11
                },
                {
                    "op": "×",
                    "operand": 3,
                    "result": 33
                },
                {
                    "op": "+",
                    "operand": 7,
                    "result": 40
                }
            ],
            "finalValue": 40,
            "pathDescription": "Step 1: +3 = 11; Step 2: ×3 = 33; Step 3: +7 = 40"
        },
        {
            "type": "math-maze",
            "subType": "math-maze",
            "difficulty": "easy",
            "question": "Math Maze: Start at 9. Follow the path: +7 → -1 → +6. What is the final value?",
            "answer": "21",
            "startValue": 9,
            "steps": [
                {
                    "op": "+",
                    "operand": 7,
                    "result": 16
                },
                {
                    "op": "-",
                    "operand": 1,
                    "result": 15
                },
                {
                    "op": "+",
                    "operand": 6,
                    "result": 21
                }
            ],
            "finalValue": 21,
            "pathDescription": "Step 1: +7 = 16; Step 2: -1 = 15; Step 3: +6 = 21"
        }
    ],
    "layout": {
        "columns": 2,
        "problemsPerPage": 20
    },
    "_archetype": "form-exercise",
    "_generatorId": "arithmetic-generator-v7.2.1"
}