diff options
author | Greg Brown <greg.brown@cl.cam.ac.uk> | 2022-04-05 12:06:33 +0100 |
---|---|---|
committer | Greg Brown <greg.brown@cl.cam.ac.uk> | 2022-04-05 12:06:33 +0100 |
commit | b212c150ec0a9bf45cf6c28fba997693669e78d2 (patch) | |
tree | 65351de7452c7e9fd111354d185e10c94eb4c569 /src/Helium/Algebra/Ordered/StrictTotal | |
parent | 6acd0e87fa8ab2a3230626b37f1cd02181810a1a (diff) |
Minor clean up.
Diffstat (limited to 'src/Helium/Algebra/Ordered/StrictTotal')
-rw-r--r-- | src/Helium/Algebra/Ordered/StrictTotal/Properties/Group.agda | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Helium/Algebra/Ordered/StrictTotal/Properties/Group.agda b/src/Helium/Algebra/Ordered/StrictTotal/Properties/Group.agda index e186c71..5cf2d5b 100644 --- a/src/Helium/Algebra/Ordered/StrictTotal/Properties/Group.agda +++ b/src/Helium/Algebra/Ordered/StrictTotal/Properties/Group.agda @@ -202,14 +202,14 @@ x⁻¹≈ε⇒x≈ε {x} x⁻¹≈ε = ≮∧≯⇒≈ (<-irrefl (Eq.sym x⁻¹ x<y⇒ε<y∙x⁻¹ : ∀ {x y} → x < y → ε < y ∙ x ⁻¹ x<y⇒ε<y∙x⁻¹ {x} {y} x<y = begin-strict ε ≈˘⟨ inverseʳ x ⟩ - x ∙ x ⁻¹ <⟨ ∙-invariantʳ (x ⁻¹) x<y ⟩ + x ∙ x ⁻¹ <⟨ ∙-monoʳ-< x<y ⟩ y ∙ x ⁻¹ ∎ ε<y∙x⁻¹⇒x<y : ∀ {x y} → ε < y ∙ x ⁻¹ → x < y ε<y∙x⁻¹⇒x<y {x} {y} ε<yx⁻¹ = begin-strict x ≈˘⟨ identityˡ x ⟩ - ε ∙ x <⟨ ∙-invariantʳ x ε<yx⁻¹ ⟩ - y ∙ x ⁻¹ ∙ x ≈⟨ assoc y (x ⁻¹) x ⟩ - y ∙ (x ⁻¹ ∙ x) ≈⟨ ∙-congˡ (inverseˡ x) ⟩ - y ∙ ε ≈⟨ identityʳ y ⟩ + ε ∙ x <⟨ ∙-monoʳ-< ε<yx⁻¹ ⟩ + y ∙ x ⁻¹ ∙ x ≈⟨ assoc y (x ⁻¹) x ⟩ + y ∙ (x ⁻¹ ∙ x) ≈⟨ ∙-congˡ (inverseˡ x) ⟩ + y ∙ ε ≈⟨ identityʳ y ⟩ y ∎ |