\equiv
Person
are equivalent if they have the same name; formally p1 == p2
if p1.name == p2.name
. In type theories which allow quotient types, an additional requirement is made that all operations must respect the equivalence between elements. For example, if f
is a function on values of type Person
, it must be the case that for two Person
s p1
and p2
, if p1 == p2
then f(p1) == f(p2)
.Quotient types are part of a general class of types known as algebraic data types. In the early 1980s, quotient types were defined and implemented as part of the Nuprl proof assistant, in work led by Robert L. Constable and others.[1] [2] Quotient types have been studied in the context of Martin-Löf type theory,[3] dependent type theory,[4] higher-order logic,[5] and homotopy type theory.[6]
To define a quotient type, one typically provides a data type together with an equivalence relation on that type, for example, Person // ==
, where ==
is a user-defined equality relation. The elements of the quotient type are equivalence classes of elements of the original type.[3]
Quotient types can be used to define modular arithmetic. For example, if Integer
is a data type of integers,
\equiv2
x\equiv2y
x-y
Integer //
\equiv2
The operations on integers, +
, -
can be proven to be well-defined on the new quotient type.
In type theories that lack quotient types, setoids (sets explicitly equipped with an equivalence relation) are often used instead of quotient types. However, unlike with setoids, many type theories may require a formal proof that any functions defined on quotient types are well-defined.[7]
Quotient types are part of a general class of types known as algebraic data types. Just as product types and sum types are analogous to the cartesian product and disjoint union of abstract algebraic structures, quotient types reflect the concept of set-theoretic quotients, sets whose elements are partitioned into equivalence classes by a given equivalence relation on the set. Algebraic structures whose underlying set is a quotient are also termed quotients. Examples of such quotient structures include quotient sets, groups, rings, categories and, in topology, quotient spaces.[3]