agda-stdlib icon indicating copy to clipboard operation
agda-stdlib copied to clipboard

Add proofs for MoufangLoop

Open Akshobhya1234 opened this issue 3 years ago • 0 comments

In this PR

  • Correct definitions LeftBol and IsMoufangLoop Show the following for MoufangLoop
  • leftAlternative : LeftAlternative _∙_
  • rightAlternative : RightAlternative _∙_
  • alternative : Alternative _∙_
  • z∙xzy≈zxz∙y : ∀ x y z → (z ∙ (x ∙ (z ∙ y))) ≈ (((z ∙ x) ∙ z) ∙ y)
  • x∙zyz≈xzy∙z : ∀ x y z → (x ∙ (z ∙ (y ∙ z))) ≈ (((x ∙ z) ∙ y) ∙ z)

Akshobhya1234 avatar Aug 07 '22 20:08 Akshobhya1234