Classical.Signatures.Unary¶
The signature of unary algebras¶
This is the Classical.Signatures.Unary module of the Agda Universal Algebra Library.
A unary algebra over a set A of operation symbols is a carrier equipped with
one unary operation per element of A. The most important examples are
G-sets: for a group G, an action of G on a set is exactly an algebra over
the unary signature whose symbol set is the carrier of G (satisfying the action
equations). The two-layer congruence programme (ADR-008) uses this signature for
its coset algebras G โท G/H, whose congruence lattices realize the intervals
[H, G] of subgroup lattices.
Because a Sig-Unary-algebra is an Algebra like any other, the whole
congruence machinery (Con, quotients, homomorphism theorems) applies
to G-sets with no special cases.
The arity of every symbol is Fin 1, matching the convention of the unary symbol
โปยน-Op in Sig-Group.
This module deviates from the normative Op-X/ar-X pattern of
Classical.Signatures.Magma in one respect, and deliberately so: the
operation-symbol type is a parameter A, not a fixed data type of named
constructors, so there is no Op-Unary data declaration and no pattern-matching
arity function. The arity function is constantly Fin 1 โ the "recommended
shape" of Examples.Setoid.FinitarySignatures, under which every arity reduces
definitionally to a concrete Fin, so finiteness witnesses need no case split
(see Classical.Signatures.Finite).
The signature value¶
One unary operation symbol per element of A.
Sig-Unary : {โ : Level} โ Type โ โ Signature โ 0โ Sig-Unary A = A , ฮป _ โ Fin 1