medium Set 31 Form Exercise

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

Show answer

Answer: 7

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

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

Show answer

Answer: 55

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

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

Show answer

Answer: 36

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

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

Show answer

Answer: 28

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

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

Show answer

Answer: 76

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

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

Show answer

Answer: 48

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

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

Show answer

Answer: 22

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

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

Show answer

Answer: 12

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