There is a game (sort of) called Challenge 24. Basically, you get 4 numbers that you must make equal 24, using each one only once, and only using +, -, /, and *, the four basic operations:
And you thought this would be too easy, Kluge. If it proves to be too easy, we can always change the rules slightly. I’m surprised the math guys aren’t in here, though… This sort of thing should be right up their alley.
Anyway, 7*5-12-9=24. That took me so long to figure out. I spent about half an hour on it and gave up, and the answer came to me while this reply page was loading. (Who else misses the old format with the reply box at the bottom of the thread?)
OK, I decided to ruin everything by writing a computer program to solve problems of this sort…
First of all, 21, 6, 8, 2, is in fact unsolvable. The closest one can come is:
((21)-(6))+((8)+(2)) = 25
((21)/(2))+((6)+(8)) = 49/2
((21)+(2))+((8)/(6)) = 73/3
((21)+(2))+((6)/(8)) = 95/4
(21)+((2)/((6)/(8))) = 71/3
((21)+(6))-((8)/(2)) = 23
As for 3, 3, 7, 7:
(7)*((3)+((3)/(7))) = 24
Oh, and 7,9,11,4.5 has no solution either
Anyhow, with the massive power of this computer program, I have come up with the following question: using 1, 2, 3, and 4 as your 4 numbers, what is the smallest integer which can NOT be generated in this method?