medium Set 52 Form Exercise

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

Show answer

Answer: 97

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

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

Show answer

Answer: 3

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

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

Show answer

Answer: 23

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

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

Show answer

Answer: 10

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

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

Show answer

Answer: -1

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

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

Show answer

Answer: 99

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

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

Show answer

Answer: 11

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

Math Maze: Start at 7. Follow the path: +8 → -12 → +6 → -4. What is the final value?

Show answer

Answer: 5

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