]> gitweb.michael.orlitzky.com - mjotex.git/commitdiff
Add \zero{R} for the additive identity element in R.
authorMichael Orlitzky <michael@orlitzky.com>
Sat, 6 Feb 2021 13:10:41 +0000 (08:10 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 6 Feb 2021 13:10:41 +0000 (08:10 -0500)
examples.tex
mjo-algebra.tex

index 7646b66183ec3ce967677147959b6ef195cb1470..015c5fd67df5aa3e5d4c272c60480694d20ba1ba 100644 (file)
@@ -38,7 +38,8 @@
     containing the set $\set{x,y,z}$.
 
     If $R$ has a multiplicative identity (that is, a unit) element,
-    then that element is denoted by $\unit{R}$.
+    then that element is denoted by $\unit{R}$. Its additive identity
+    element is $\zero{R}$.
   \end{section}
 
   \begin{section}{Algorithm}
index 36ad4bd64888c1b2926ff2d454c989e3a561a6aa..25b96d9f8a184edc051ed2867bc8fa9b4b0a269b 100644 (file)
 \input{mjo-common} % for \of, and \binopmany
 
 
+% The additive identity element of its argument, which should be
+% an algebraic structure.
+\newcommand*{\zero}[1]{ 0_{{#1}} }
+
+\ifdefined\newglossaryentry
+  \newglossaryentry{zero}{
+    name={\ensuremath{\zero{R}}},
+    description={the additive identity element of $R$},
+    sort=z
+  }
+\fi
+
 % The multiplicative identity element of its argument, which should be
 % an algebraic structure.
 \newcommand*{\unit}[1]{ 1_{{#1}} }