With a binary search, only 20 items have to be
examined to discover that an item is not in the list
That's because 1,000,000 is less than 2²º but greater than 2¹⁹
If the list were unsorted, 1,000,000 items would need to be checked to prove that the item is not in the list
With a linear search, 1,000,000 items would need to
be examined