-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Proves continuity of map K_v -> L_w modulo some lemmas that need to b…
…e refactored in Mathlib
- Loading branch information
javierlcontreras
committed
Nov 11, 2024
1 parent
cc224da
commit 0c8d1e1
Showing
3 changed files
with
55 additions
and
11 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import Mathlib.Algebra.Order.Ring.Basic | ||
|
||
variable {G₀ : Type*} [GroupWithZero G₀] [LinearOrder G₀] | ||
variable {a b : G₀} | ||
|
||
@[mono, gcongr, bound] | ||
theorem zpow_le_zpow_left (ha : 0 ≤ a) (hab : a ≤ b) : ∀ n : ℤ, a ^ n ≤ b ^ n := | ||
by sorry | ||
|
||
@[mono, gcongr, bound] | ||
theorem zpow_lt_zpow_left (ha : 0 ≤ a) (hab : a < b) : ∀ {n : ℤ}, a ^ n < b ^ n := | ||
by sorry | ||
|
||
|
||
theorem lt_of_zpow_lt_zpow_left (n : ℤ) (hb : 0 ≤ b) (h : a^n < b^n) : a < b := | ||
lt_of_not_ge fun hn => not_lt_of_ge (zpow_le_zpow_left hb hn _) h |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import Mathlib.Algebra.Order.Monoid.Unbundled.TypeTags | ||
|
||
@[gcongr] | ||
alias ⟨_, ofAdd_mono⟩ := Multiplicative.ofAdd_le |