|
| 1 | +# Left-invertible magmas |
| 2 | + |
| 3 | +```agda |
| 4 | +module structured-types.left-invertible-magmas where |
| 5 | +``` |
| 6 | + |
| 7 | +<details><summary>Imports</summary> |
| 8 | + |
| 9 | +```agda |
| 10 | +open import foundation.dependent-pair-types |
| 11 | +open import foundation.dependent-products-propositions |
| 12 | +open import foundation.equivalences |
| 13 | +open import foundation.propositions |
| 14 | +open import foundation.universe-levels |
| 15 | +
|
| 16 | +open import structured-types.magmas |
| 17 | +``` |
| 18 | + |
| 19 | +</details> |
| 20 | + |
| 21 | +## Idea |
| 22 | + |
| 23 | +A [magma](structured-types.magmas.md) `A` is |
| 24 | +{{#concept "left-invertible" Disambiguation="magma" Agda=is-left-invertible-Magma}} |
| 25 | +if the multiplication map `μ(a,-) : A → A` is an |
| 26 | +[equivalence](foundation-core.equivalences.md) for every `a : A`. In other |
| 27 | +words, if multiplying by a fixed element on the left is always an equivalence. |
| 28 | + |
| 29 | +Left-invertibility appears as Definition 2.1(4) of {{#cite BCFR23}} in the |
| 30 | +context of [H-spaces](structured-types.h-spaces.md). |
| 31 | + |
| 32 | +## Definitions |
| 33 | + |
| 34 | +### The predicate of being a left invertible magma |
| 35 | + |
| 36 | +```agda |
| 37 | +module _ |
| 38 | + {l : Level} (A : Magma l) |
| 39 | + where |
| 40 | +
|
| 41 | + is-left-invertible-Magma : UU l |
| 42 | + is-left-invertible-Magma = (a : type-Magma A) → is-equiv (mul-Magma A a) |
| 43 | +
|
| 44 | + is-prop-is-left-invertible-Magma : is-prop is-left-invertible-Magma |
| 45 | + is-prop-is-left-invertible-Magma = |
| 46 | + is-prop-Π (λ a → is-property-is-equiv (mul-Magma A a)) |
| 47 | +
|
| 48 | + is-left-invertible-prop-Magma : Prop l |
| 49 | + is-left-invertible-prop-Magma = |
| 50 | + ( is-left-invertible-Magma , is-prop-is-left-invertible-Magma) |
| 51 | +``` |
| 52 | + |
| 53 | +## References |
| 54 | + |
| 55 | +{{#bibliography}} |
0 commit comments