This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
There's a logic where you need previous solutions to get the answer 40 . But this logic fails if you change the statements order or remove any of them, giving different results for the same statements.
x + y = x + y + (previous answer)
This way:
8 + 1 1 = 8 + 1 1 + 2 1 = 4 0
But, if you apply a logic where the results are the same, no matter the order of statements, or if there's no other statements at all, then you find the correct answer, 96 .
x + y = x × ( y + 1 )
This way:
8 + 1 1 = 8 × ( 1 1 + 1 ) = 9 6
Plus, if you add more statements to complete the sequence (adding 1 to x and y on each statement):
1 + 4 = 5
2 + 5 = 1 2
3 + 6 = 2 1
4 + 7 = 3 2
5 + 8 = 4 5
6 + 9 = 6 0
7 + 1 0 = 7 7
8 + 1 1 = ?
Then both logic works, but both will result 96 . Just remember that, only the second one works perfectly, as it independs from previous results or the existence of previous statements.
Sorry, I have changed the + sign to ⊕ \ oplus to avoid confusion.
Problem Loading...
Note Loading...
Set Loading...
We note that x ⊕ y = x × y + x . Therefore, 8 ⊕ 1 1 = 8 × 1 1 + 8 = 9 6 .