Exercise 2.1.15: The Power Set P(N) and Metric Properties
The power set P(N) is the collection of all subsets of the set N of natural numbers. For example, the following are considered as three points in P(N):
E = {2, 4, 6, 8} (all even numbers),
P = {2, 3, 5, 7} (all prime numbers),
5 = {1, 4, 9, 16} (all square numbers).
For A, B ∈ P(N), define:
fo if A = B.
d(A, B) = if A ∩ B = ∅, min((A - B) ∪ (B - A)).
For example, (E ∖ P) ∪ (P ∖ E) = {3, 4, 5, ...} implies d(E, P) = ∅.
Prove that d(A, C) < max{d(A, B), d(B, C)}.
d is a metric.
3. d(N - A, N - B) = d(A, B): The last property means that the complement map A ↦ N - A is an isometry.