模n同余符号怎么写?

模n同余符号怎么写?

如果 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 11a\equiv b \pmod pq看看为什么。

最后一个被标记为“错误”,因为使用不当:\bmod应该用于“模”二进制运算(在计算中通常用 表示%)。

答案2

使用pmod n。已知它可以起作用。

相关内容