medium Set 12 Form Exercise

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

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

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

Show answer

Answer: 46

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

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

Show answer

Answer: 40

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

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

Show answer

Answer: 36

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

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

Show answer

Answer: 10

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

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

Show answer

Answer: 4

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

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

Show answer

Answer: 4

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

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

Show answer

Answer: 2

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