« Back to James's CS61A page. CS61A: Spring 2000

Week 11 Discussion/Lab Notes


Administrivia


Discussion Outline


(I suggest also reading Benson Limketkai's stream notes.)


Countability

(You don't need to know this for the course.)

Those of you who have taken or are taking Math 55 or CS70 should already be familiar with the concept of countability. We say that a set is countable if either of the following is true:

The first case is fairly trivial and isn't very interesting, so let's look at the second case, which deals with infinite sets.

The second case means that if we can find a mapping such that every element in S has some natural number mapped to it, then S is countable. (Technically this satisfies the surjective half for one-to-one correspondence. But actually, the injective half of the requirement isn't important for countability.)

stream-ref provides a mapping from the natural numbers to the elements of a stream. To obtain the nth element of a stream, we merely need to call (stream-ref stream (- n 1)). This covers all of the elements of the stream, and thus, every (flat) stream is countable!

Conversely, every countable set can be represented as a stream. If the mapping from the natural numbers to this set is given by the function f, then we merely need to construct a stream such that the nth element is f(n).

What are some examples of countable sets that have an infinite number of elements? The set of all integers (positive, negative, and 0) is a countable set. We can map a natural number n to the integer (-1)n ceiling(n/2). As a stream, this would look like: 0, -1, 1, -2, 2, -3, 3, ....

The set of all rational numbers is also countable. (Dr. Math has the explanation. Note that although the proof only addresses positive rationals, we can show that the set of all rationals is countable by using the same technique as we used for the integers.) Note the similarity between rational numbers and ordered pairs.

What are some examples of uncountable sets? The set of real numbers is not countable. The power set (the set of all subsets) of the natural numbers is also not countable.


« Week 10 Week 12 »
« Back to James's CS61A page. CS61A: Spring 2000

Last Modified: Tuesday, 30-Dec-2014 11:58:34 PST