-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
211 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
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,56 @@ | ||
import OrderedSemigroups.Defs | ||
import OrderedSemigroups.OrderedGroup.Defs | ||
import Mathlib.Data.Set.Basic | ||
import OrderedSemigroups.SemigroupToMonoid | ||
import Mathlib.Algebra.Group.Subsemigroup.Basic | ||
|
||
|
||
universe u | ||
|
||
variable {α : Type u} | ||
|
||
section Cones | ||
|
||
variable [Group α] [PartialOrder α] | ||
|
||
instance PositiveCone (α : Type u) [Group α] [PartialOrder α] : Subsemigroup α where | ||
carrier := {x : α | 1 < x} | ||
mul_mem' := sorry | ||
|
||
instance NegativeCone (α : Type u) [Group α] [PartialOrder α] : Subsemigroup α where | ||
carrier := {x : α | x < 1} | ||
mul_mem' := sorry | ||
|
||
theorem pos_neg_disjoint : Disjoint (SetLike.coe (PositiveCone α)) (SetLike.coe (NegativeCone α)) := sorry | ||
|
||
end Cones | ||
|
||
section LeftOrdered | ||
|
||
variable [LeftOrderedGroup α] | ||
|
||
def archimedean_group (α : Type u) [LeftOrderedGroup α] := | ||
∀(g h : α), g ≠ 1 → ∃z : ℤ, g^z > h | ||
|
||
instance : LeftOrderedSemigroup α where | ||
mul_le_mul_left _ _ a b := mul_le_mul_left' a b | ||
|
||
/-- | ||
The definition of archimedean for groups and the one for semigroups are equivalent. | ||
-/ | ||
theorem arch_group_semigroup : archimedean_group α ↔ is_archimedean (α := α) := by sorry | ||
|
||
def normal_semigroup {α : Type u} [Group α] (x : Subsemigroup α) := | ||
∀s : x, ∀g : α, g * s * g⁻¹ ∈ x | ||
|
||
/-- | ||
A left ordered group whose positive cone is a normal semigroup is an ordered group. | ||
-/ | ||
def pos_normal_ordered (pos_normal : normal_semigroup (PositiveCone α)) : OrderedGroup α := by sorry | ||
|
||
/-- | ||
A left ordered group that is Archimedean is an ordered group. | ||
-/ | ||
def left_arch_ordered (arch : is_archimedean (α := α)) : OrderedGroup α := by sorry | ||
|
||
end LeftOrdered |
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,27 @@ | ||
import Mathlib.Algebra.Order.Group.Basic | ||
|
||
universe u | ||
|
||
variable {α : Type u} | ||
|
||
class LeftOrderedGroup (α : Type u) extends Group α, PartialOrder α where | ||
mul_le_mul_left : ∀ a b : α, a ≤ b → ∀ c : α, c * a ≤ c * b | ||
|
||
variable [LeftOrderedGroup α] | ||
|
||
instance leftOrderedCovariant [LeftOrderedGroup α] : CovariantClass α α (· * ·) (· ≤ ·) where | ||
elim a b c bc := LeftOrderedGroup.mul_le_mul_left b c bc a | ||
|
||
instance leftOrderedContravariant [LeftOrderedGroup α] : ContravariantClass α α (· * ·) (· ≤ ·) where | ||
elim a b c bc := by simpa using mul_le_mul_left' bc a⁻¹ | ||
|
||
class RightOrderedGroup (α : Type u) extends Group α, PartialOrder α where | ||
mul_le_mul_right : ∀ a b : α, a ≤ b → ∀ c : α, a * c ≤ b * c | ||
|
||
instance rightOrderedCovariant [RightOrderedGroup α] : CovariantClass α α (Function.swap (· * ·)) (· ≤ ·) where | ||
elim a b c bc := RightOrderedGroup.mul_le_mul_right b c bc a | ||
|
||
instance rightOrderedContravariant [RightOrderedGroup α] : ContravariantClass α α (Function.swap (· * ·)) (· ≤ ·) where | ||
elim a b c bc := by simpa using mul_le_mul_right' bc a⁻¹ | ||
|
||
class OrderedGroup (α : Type u) extends LeftOrderedGroup α, RightOrderedGroup α |
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
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