Catch the Hidden Pattern in the Number Machine
A number machine works like this:
It takes a number, doubles it, then adds 6, then divides the result by 2.
The machine outputs 17.
What number did you put into the machine?
Want practice that adjusts to your level as you improve? Try ElevenEdge— adaptive 11+ questions built for exactly this.
Let the input be x.
ReplyDeleteMachine steps:
Double it: 2x
Add 6: 2x + 6
Divide by 2: (2x + 6) ÷ 2 = x + 3
We’re told the output is 17, so:
x + 3 = 17
x = 14
Final Answer: 14