medium Set 30 Form Exercise

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

Show answer

Answer: 9

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

Math Maze: Start at 5. Follow the path: ×4 → ×3 → +9 → -68. What is the final value?

Show answer

Answer: 1

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

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

Show answer

Answer: 8

SubType
math-maze
Difficulty
medium
StartValue
9
Steps
  • {"op":"+","operand":2,"result":11}
  • {"op":"\u00d7","operand":3,"result":33}
  • {"op":"-","operand":13,"result":20}
  • {"op":"-","operand":12,"result":8}
FinalValue
8
PathDescription
Step 1: +2 = 11; Step 2: ×3 = 33; Step 3: -13 = 20; Step 4: -12 = 8

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

Show answer

Answer: 23

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

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

Show answer

Answer: 112

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

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

Show answer

Answer: 72

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

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

Show answer

Answer: 4

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

Math Maze: Start at 6. Follow the path: +8 → +9 → -10 → -3. What is the final value?

Show answer

Answer: 10

SubType
math-maze
Difficulty
medium
StartValue
6
Steps
  • {"op":"+","operand":8,"result":14}
  • {"op":"+","operand":9,"result":23}
  • {"op":"-","operand":10,"result":13}
  • {"op":"-","operand":3,"result":10}
FinalValue
10
PathDescription
Step 1: +8 = 14; Step 2: +9 = 23; Step 3: -10 = 13; Step 4: -3 = 10