Skip to content

Commit

Permalink
BabyRudin: Solution: Ex02 in Ch02
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliachan1979 committed Jan 20, 2024
1 parent e1d1ea7 commit 2b7c514
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Books/BabyRudin/Chapter02/ex02.cecilia.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
\subsection*{Exercise 02 (Cecilia)}
Define the set $ TP_{ink} $ for integer $ i, n, k $ such that $ 1 \leq i \leq n $ and $ k \ge 1 $ as the set of $ n + 2 $ tuples $ (a_0, a_1, a_2, \dots, a_n, i) $ such that $ |a_0| + |a_1| + \cdots + |a_n| = k $ and $ a_0, a_1, a_2, \dots, a_n \in \mathbb{Z} $. By the hint, these sets are finite.

Define $ TP_{nk} $ to be $ \bigcup_{i=1}^n TP_{ink} $. Since $ TP_{ink} $ is finite, $ TP_{nk} $ is also finite because it is a finite union of finite sets.

Define $ TP_k $ to be $ \bigcup_{n=1}^\infty TP_{nk} $. Since $ TP_{nk} $ is finite, $ TP_k $ is countable because it is the disjoint union a sequence of finite sets. (by corollary 2.12)

Define $ TP $ to be $ \bigcup_{k=1}^\infty TP_k $. Since $ TP_k $ is countable, $ TP $ is countable because it is a sequence of disjoint countable sets (by theorem 2.12)

So there exists a mapping $ m $ from $ TP $ to $ \mathbb{N} $, which is a bijection.

We can define a surjective mapping $ f $ (for forward) from $ TP $ to the set of algebraic numbers $ \mathbb{A} $ by mapping each tuple $ (a_0, a_1, a_2, \dots, a_n, i) $ to the ith root of the polynomial $ a_nx^n + \cdots + a_0 $. To define the ith root, we can use the lexicographic ordering for the complex numbers, it doesn't matter that this order is incompatible with the field operations, all we needed is a definition to avoid ambiguity.

Now we can define a mapping $ b $ (for backward) from $ A $ to $ N $ as follow:

$ b(a) = min(n) $ such that $ f(n) = a $.

This definition is well defined because $ f $ is surjective.

Let $ B $ be the range of $ b $, $ B $ is a subset of $ N $, therefore $ B $ is countable (by theorem 2.8). Consider the restricted mapping $ b' $ from $ A $ to $ B $. $ b' $ is surjective by definition, $ b' $ is injective because $ f(b(a)) = a $ by definition of $ b $, therefore $ b' $ is bijective.

Since there exists a bijection from $ A $ to $ B $, a countable set, therefore $ A $ is also countable.

0 comments on commit 2b7c514

Please sign in to comment.