medium Set 18 Form Exercise

Math Maze: Start at 10. Follow the path: +1 → -2 → +10 → +3. What is the final value?

Show answer

Answer: 22

SubType
math-maze
Difficulty
medium
StartValue
10
Steps
  • {"op":"+","operand":1,"result":11}
  • {"op":"-","operand":2,"result":9}
  • {"op":"+","operand":10,"result":19}
  • {"op":"+","operand":3,"result":22}
FinalValue
22
PathDescription
Step 1: +1 = 11; Step 2: -2 = 9; Step 3: +10 = 19; Step 4: +3 = 22

Math Maze: Start at 4. Follow the path: ×2 → ×4 → +3 → +7. What is the final value?

Show answer

Answer: 42

SubType
math-maze
Difficulty
medium
StartValue
4
Steps
  • {"op":"\u00d7","operand":2,"result":8}
  • {"op":"\u00d7","operand":4,"result":32}
  • {"op":"+","operand":3,"result":35}
  • {"op":"+","operand":7,"result":42}
FinalValue
42
PathDescription
Step 1: ×2 = 8; Step 2: ×4 = 32; Step 3: +3 = 35; Step 4: +7 = 42

Math Maze: Start at 4. Follow the path: ×4 → ×3 → ×3 → ×3. What is the final value?

Show answer

Answer: 432

SubType
math-maze
Difficulty
medium
StartValue
4
Steps
  • {"op":"\u00d7","operand":4,"result":16}
  • {"op":"\u00d7","operand":3,"result":48}
  • {"op":"\u00d7","operand":3,"result":144}
  • {"op":"\u00d7","operand":3,"result":432}
FinalValue
432
PathDescription
Step 1: ×4 = 16; Step 2: ×3 = 48; Step 3: ×3 = 144; Step 4: ×3 = 432

Math Maze: Start at 8. Follow the path: +7 → +3 → ×2 → ×4. What is the final value?

Show answer

Answer: 144

SubType
math-maze
Difficulty
medium
StartValue
8
Steps
  • {"op":"+","operand":7,"result":15}
  • {"op":"+","operand":3,"result":18}
  • {"op":"\u00d7","operand":2,"result":36}
  • {"op":"\u00d7","operand":4,"result":144}
FinalValue
144
PathDescription
Step 1: +7 = 15; Step 2: +3 = 18; Step 3: ×2 = 36; Step 4: ×4 = 144

Math Maze: Start at 2. Follow the path: -1 → -1 → +9 → ×2. What is the final value?

Show answer

Answer: 18

SubType
math-maze
Difficulty
medium
StartValue
2
Steps
  • {"op":"-","operand":1,"result":1}
  • {"op":"-","operand":1,"result":0}
  • {"op":"+","operand":9,"result":9}
  • {"op":"\u00d7","operand":2,"result":18}
FinalValue
18
PathDescription
Step 1: -1 = 1; Step 2: -1 = 0; Step 3: +9 = 9; Step 4: ×2 = 18

Math Maze: Start at 8. Follow the path: -6 → -1 → ×2 → +5. What is the final value?

Show answer

Answer: 7

SubType
math-maze
Difficulty
medium
StartValue
8
Steps
  • {"op":"-","operand":6,"result":2}
  • {"op":"-","operand":1,"result":1}
  • {"op":"\u00d7","operand":2,"result":2}
  • {"op":"+","operand":5,"result":7}
FinalValue
7
PathDescription
Step 1: -6 = 2; Step 2: -1 = 1; Step 3: ×2 = 2; Step 4: +5 = 7

Math Maze: Start at 8. Follow the path: ×4 → +6 → +10 → +1. What is the final value?

Show answer

Answer: 49

SubType
math-maze
Difficulty
medium
StartValue
8
Steps
  • {"op":"\u00d7","operand":4,"result":32}
  • {"op":"+","operand":6,"result":38}
  • {"op":"+","operand":10,"result":48}
  • {"op":"+","operand":1,"result":49}
FinalValue
49
PathDescription
Step 1: ×4 = 32; Step 2: +6 = 38; Step 3: +10 = 48; Step 4: +1 = 49

Math Maze: Start at 6. Follow the path: -1 → ×4 → +5 → -16. What is the final value?

Show answer

Answer: 9

SubType
math-maze
Difficulty
medium
StartValue
6
Steps
  • {"op":"-","operand":1,"result":5}
  • {"op":"\u00d7","operand":4,"result":20}
  • {"op":"+","operand":5,"result":25}
  • {"op":"-","operand":16,"result":9}
FinalValue
9
PathDescription
Step 1: -1 = 5; Step 2: ×4 = 20; Step 3: +5 = 25; Step 4: -16 = 9