The number game is part of the longlasting French game "des chiffres et des lettres", which in UK is also known as "Countdown".
Short description: you have 6 tiles corresponding to numbers, and you must use all 4 operations (add, multiply, substract, divide) to obtain a randomly chosen three digit number.
I play this game quite often and stumbled upon a page which gave this trick to tell whether a (three digit) number is divisible by 8. Say the three digits are named H, T and U (for Hundreds, Tens and Units), then to find if HTU is divisible by 8, you can do this:
- if H is even, then TU must be divisible by 8;
- if H is odd, then TU must be divisible by 4, but not 8.
And indeed this works (insofar as I didn't find any counterexample); for instance 544 is divisible by 8 (8 * 68) since 5 is odd, and 44 is divisible by 4 but not 8.
But what is the proof?