I am trying to find the lower bound of a marble problem, the problem is;
There are n marbles, there may be 1 marble that is lighter than the rest or they may all be equal.
I know from the standard weighing problem that the the lower bound for finding the lighter marble is O(log3 n).
However in this case the could be a case when all marbles are equal, would this change the lower bound?
So is the lower bound equal to the best case that it can be solved in?