Multiplying Positives Makes a Positive¶
Proposition
Verifying for Rationals¶
Lemma:
Proof (by induction on \(b\)):
We prove the first part of the lemma. The second part follows similarly.
Base Case: Let \(b = 1\). Then:
\[ ab = a \cdot 1 = a > 0 \quad (\text{Identity Element}) \]Inductive Step: Assume for some \(n \in \mathbb{N}\), we have:
\[ a n > 0 \]We need to show that \(a (n + 1) > 0\).
\[ a(n + 1) = a n + a \quad (\text{Distributive Property}) \]since \(an > 0\) and \(a > 0\), we have:
\[ a n + a > 0 \]Thus, \(a(n + 1) > 0\).
By induction, the statement holds for all \(b \in \mathbb{N}\).
Similar reasoning applies for \(a < 0\) and \(b \in \mathbb{N}\), yielding \(ab < 0\).
Theorem 1:
Proof (by contradiction):
Suppose the theorem is false, i.e.:
Let \(b_0 = \frac{m}{n}\), where \(m, n \in \mathbb{N}\).
Since \(a_0 > 0\) and \(m \in \mathbb{N}\), Thus by the lemma:
However, since \(a_0 b_0 < 0\) (assumption) and \(n \in \mathbb{N}\), we also have by the lemma:
This leads to a contradiction. Therefore, our assumption is false, and the theorem holds.
The Proof¶
Before extending to the real numbers, we need to establish one key points:
the limit of a bounded sequence of positive rational numbers is strictly positive.
Theorem 2:
If a real sequence \(S_n \to S\) as \(n \to \infty\), then:
Proof (by contradiction):
Assume the opposite, i.e.
Select \(\epsilon = c - S\), we have:
According to the assumption, we also have:
Thus \(\forall n \ge \max(N, M)\), \(S_n\) should be both greater than \(c\) and less than \(c\), which is a contradiction.
Therefore, our assumption is false, and the theorem holds.
Now we can prove the proposition.
Proof:
Construct a sequence of rational numbers \(b_n \in \mathbb{Q}\) such that:
This is possible by the density of \(\mathbb{Q}\) in \(\mathbb{R}\). For the same reason, we can select:
Since \(a > 0\), \(b_n - q > 0\), and \(b_n - q \in \mathbb{Q}\), applying Theorem 1:
Define function:
Since \(f(x)\) is continuous for \(x \in \mathbb{R}\), we have:
Let sequence \(S_n = a b_n\). Then \(S_n \to ab\) as \(n \to \infty\). Also since \(S_n > a q > 0\) for all \(n \ge N\), applying Theorem 2:
Back to Miscellaneous.