Created
May 10, 2023 00:34
-
-
Save jcreedcmu/07628e5bd7ddf40bdad7c757d7ea7142 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Lemma 2: ("Real Induction") Let A be a subset of real numbers. | |
If | |
(0) α ∈ A | |
(1) ∀x ∈ A. ∃y. [x,y) ⊆ A | |
(2) ∀xy. [x, y) ⊆ A ⇒ y ∈ A | |
then [α,∞) ⊆ A. | |
Proof: | |
Suppose towards a contradiction that [α,∞) ∖ A is nonempty. Set β = inf ([α,∞) ∖ A). | |
(1) means we can't have β ∈ A, because it would collide with the infimum. | |
So β > α and β ∉ A. But then [α,β) ⊆ A, and so β ∉ A, a contradiction. | |
∎ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment