#21 - TinTin Logic Riddle

TinTin is on an island and there are three crates of fruit that have washed up in front of him. One crate contains only apples. One crate contains only oranges. The other crate contains both apples and oranges.

Each crate is labeled. One reads 'apples', one reads 'oranges', and one reads 'apples and oranges'. He know that NONE of the crates have been labeled correctly - they are all wrong.

If he can only take out and look at just one of the pieces of fruit from just one of the crates, how can he label ALL of the crates correctly?

Take a piece of fruit from the "apples and oranges" crate. If it's an apple then you know that is the "apples" crate since ALL THE CRATES ARE LABLED INCORRECTLY. This means the crate marked "apples" must be "oranges" and the crate marked "oranges" must be "apples and oranges".

#22 - Hard Maths Riddle

Using the digits 1 up to 9, two numbers must be made. The product of these two numbers should be as large as possible. All digits must be used exactly once. Which are the requested two numbers. ?

The digits of the requested two numbers obviously form descending sequences. Furthermore, if you have two pairs of numbers with equal sums, the pair of which the numbers have the smallest absolute difference, is the one of which the numbers have the largest product. Using this knowledge, the two numbers can easily be constructed by placing the digits one by one, starting with 9 and ending with 1:
9

8 -> 96

87 -> 964

875 -> 9642

8753 -> 9642

87531
Conclusion: the requested two numbers are 9642 and 87531 (and the product of these two numbers is 843973902).