Here is a beautiful problem:
Given twelve coins, exactly two of them is radioactive. There is a machine. You are able to put some of the coins into the machine, and then the machine tells if the coins contain a radioactive one. It doesn’t tell exactly how many, only if there is at least one. How many tries do you need to find the two radioactive coins.
Of course is it easily possible with 12 or 11 tries. But what is the minimum number of tries needed to find the two radioactive coins? And what if there are $n$ coins, where two of them are radioactive? Then is it possible to find the minimum number of tries?
Here is a way to find the coins in no more than 7 tests.
Number the coins 1 through 12. Then test the following 3 groups of coins:
[1,2,3,4], [5,6,7,8], [9,10,11,12]
That takes at most 3 tests. Then consider two cases.
Case 1: If only of those groups, say [1,2,3,4], tests positive then it contains both radioactive coins, In that case test three of its coins, say 1, 2, and 3. If two of those coins test positive then we are done. If only one tests positive, the other one is 4. This requires three additional tests, so 3 + 3 = 6 tests total.
Case 2: If two of the original groups test positive, say [1,2,3,4] and [6,7,8,9], then we know one of the coins is in one of the groups and the other one is in the other one. Then perform binary search on each of them. That takes 2 additional tests per group, so a total of 4 tests, plus the original 3 tests = 7 tests.
As saulspatz noted, there are 66 possibilities and the process work like a binary decision tree with at most $2^k$ leaves, so $k\geq 7$. Hence the process shown above is optimal.