Last active
August 29, 2015 14:11
-
-
Save bollu/130dfb5befb60371b451 to your computer and use it in GitHub Desktop.
Density Of rationals
This file contains hidden or 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
| * Density of Real Numbers in R | |
| ∀a,b ∈ R, such that a < b, ∃t ∈ R such that a < t < b | |
| ** Proof | |
| ∀a, b, ∈ R, such that a < b | |
| let t = (a + b)/2 ∈ R since a, b ∈ R | |
| let δ = (b - a)/2 ∈ R | |
| since b > a, δ > 0 | |
| t = (a + b) / 2 = a + (b - a) / 2 = a + δ | |
| => t = a + δ, where δ > 0 | |
| therefore, t > a | |
| t = (b + a) / 2 = b - (b - a) / 2 = t - δ | |
| => t = b - δ, where δ > 0 | |
| therefore, t < b | |
| Hence, a < t < b where t ∈ R |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment