Any parellogram would work since given four digit number n1n2n3n4, it is divisible by 11 iff n1+n3=n2+n4, and each ni is linear combination of the coords of keypads xi, yi, and thus (n1+n3)/2 = (n2+n4)/2
Nice - the n1 + n3 = n2 + n4 equality is only necessary (mod 11) e.g. 9020 works - this is because 99...99 with even # of 9s is divisible by 11 and with odd # 9s is divisible by 11 if we subtract 9 (or add 2) so then is = -2 mod 11. So then for example with 4 digits
1000a + 100b + 10c + d = [a + b + c + d] + [999a + 99b + 9c]
= [a + b + c + d] - 2a - 2c (mod 11)
= (b + d) - (a + c) (mod 11)
At first I thought this was going to be a puzzle about getting to a specific number using certain rules for navigating the pad, including the operation buttons. For instance, by pressing one or two buttons in each row from top to bottom, can you get the calculator to display 70?
Interestingly a 45º rotated rectangle using the keys 4 8 6 2 also is divisible by 11. This isn't directly addressed in the solution, although if you change "move both numbers horizontally or vertically by the same distance" to say "and" instead of "or" then it does.
How do you "read" an article like this? I would need to pull out some paper, run calculations, etc. to understand this (but perhaps I'm not the intended audience, as a non-mathematician?) - Or is that how you all approach an article like this?
I assume it has to do with them being rectangular. And while technically you could have a rectangle that is rotated, I think it's also plausible to assume that any diagonals are considered as rhombuses (rhombi?)
reply