How about this problem: add all of the numbers 1,2,3,...,1000.
You could take it at face value and add them sequentially
You could re-order them to get 1000+(1+999) + (2+998) + ... and sum them up that way
You could re-order them in the same way but recognise how the series will terminate
to...