如果 a 是 b 除以 n 的余数,我们说 b 与 a mod n 同余。
如何使用 LaTeX 排版?
答案1
有几种方法,选择您喜欢的一种。
\documentclass{article}
\usepackage{amsmath}
\renewcommand{\arraystretch}{1.5} % just to make the lines spread out
\begin{document}
\begin{tabular}{lll}
\verb|$a\equiv b \pmod{n}$| & $a\equiv b \pmod{n}$ \\
\verb|$a\equiv b \mod{n}$| & $a\equiv b \mod{n}$ \\
\verb|$a\equiv b \pod{n}$| & $a\equiv b \pod{n}$ \\
\verb|$a\equiv b \bmod{n}$| & $a\equiv b \bmod{n}$ & (wrong)
\end{tabular}
\end{document}
别忘了大括号:尝试一下a\equiv b \pmod 11
,a\equiv b \pmod pq
看看为什么。
最后一个被标记为“错误”,因为使用不当:\bmod
应该用于“模”二进制运算(在计算中通常用 表示%
)。
答案2
使用pmod n
。已知它可以起作用。