Last time | Next time |
We use the word cardinality even when sets are infinite in size. If you want a fun discussion of infinite sets, try Hilbert's paradox of the Grand Hotel.
I find the induction step easiest if one assumes the result for \(k\), then considers a set of \(k+1\) elements, then removes one element \(a\) and considers cases: subsets of two elements containing \(a\), and those which don't.
I assigned problem 26, which asked about subsets of three elements, and relied on this exercise (#25).
We arrived at a lower bound on the number of comparisons \(C\) for searching a list of \(m\) elements, based on the depth of the binary decision tree for searching: \[ C = \lfloor \log_2(m) \rfloor + 1 \]
Upshot:
By the time you've gotten depth \(d\) filled, you've got \(2^{d+1}-1\) internal nodes. If you're lucky and \(m= 2^{d+1}-1\), and you filled your binary tree very wisely, \[ m= 2^{d+1}-1 \iff d=\log_2(m+1) - 1 \]
The number of comparisons is one more than the depth of the search tree -- it's the depth of the decision tree, which contains the leaves which report the results. So \[ C = \lfloor log_2(m) \rfloor + 1 \]