a. | To do this, you need to find a way to list the integers in some order that can be matched with the counting numbers (1, 2, 3, ...). The difficulty lies in the fact that the integers are infinite in each direction (..., -3, -2, -1, 0, 1, 2, 3, ...). To work around this, we can start "counting" the integers from 0, working outward in both directions. Here is the one-to-one correspondence:
Counting Numbers |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
Integers |
0 |
1 |
-1 |
2 |
-2 |
3 |
-3 |
4 |
-4 |
This pattern continues infinitely (though "countably" infinitely!).
|