Large function monoids
Content created by Louis Wasserman.
Created on 2025-11-16.
Last modified on 2026-03-06.
module group-theory.large-function-monoids where
Imports
open import foundation.universe-levels open import group-theory.dependent-products-large-monoids open import group-theory.large-monoids
Idea
Given a large monoid M and an arbitrary type
A, A → M forms a large monoid.
Definition
module _ {l1 : Level} {α : Level → Level} {β : Level → Level → Level} (A : UU l1) (M : Large-Monoid α β) where function-Large-Monoid : Large-Monoid (λ l → l1 ⊔ α l) (λ l2 l3 → l1 ⊔ β l2 l3) function-Large-Monoid = Π-Large-Monoid A (λ _ → M)
Recent changes
- 2026-03-06. Louis Wasserman. Refactor large semigroups and monoids atop the cumulative large set abstraction (#1857).
- 2025-11-16. Louis Wasserman. Large function commutative rings (#1719).