Consider the task of searching a sorted array $A[1 \ldots n]$ for a given element $x:$ a task we usually perform by binary search in time $O(\log n)$. Show that any algorithm that accesses the array only via comparisons (that is, by asking questions of the form "is $A[i] \leq z ?$ ), must take $\Omega(\log n)$ steps.