Module docstring
{"# Algebraic quotients
This file defines notation for algebraic quotients, e.g. quotient groups G ⧸ H,
quotient modules M ⧸ N and ideal quotients R ⧸ I.
The actual quotient structures are defined in the following files:
* quotient group: Mathlib/GroupTheory/QuotientGroup.lean
* quotient module: Mathlib/LinearAlgebra/Quotient.lean
* quotient ring: Mathlib/RingTheory/Ideal/Quotient.lean
Notations
The following notation is introduced:
G ⧸ Hstands for the quotient of the typeGby some termH(for example,Hcan be a normal subgroup ofG). To implement this notation for other quotients, you should provide aHasQuotientinstance. Note that sinceGcan usually be inferred fromH,_ ⧸ Hcan also be used, but this is less readable.
Tags
quotient, group quotient, quotient group, module quotient, quotient module, ring quotient, ideal quotient, quotient ring "}