There are $n$ coins, three real (with equal positive weight) and the rest fake (with zero weight). You have a scale that, between two sets of coins, tells you which set is heavier (or if they are equal). What is the minimum number of weighings that you must use in order to divide the coins into three sets so that each set contains one real coin?
If we have to divide into two sets, then it is possible for any even number of coins using $\log n$ weighings. However, the method does not appear to extend to division into three sets.
Line the coins up in a row, split the row in the middle and weigh both sides of the split. Because there are an odd number of coins, the balance will always tip one way or the other. Use this fact to do a binary search to find the middle most real coin by repeatedly moving the splitting point. This takes $\log n$ weighings.
Now you have three groups: the coins to the left of the middle real coin, the middle coin itself and the coins to the right of middle real coin. Each group contains exactly 1 real coin.