Symbol/Unicode | Does Not Divide/U+2224 |
---|---|
Type of symbol | Mathematical Operator |
Package (requirement) | amssymb |
Argument | No |
Latex command | \nmid |
Example | \nmid → ∤ |
There is no default command to print the “Does Not Divide” symbol in a latex document, you need to use the \nmid
command included in the amssymb package.
\documentclass{article}
\usepackage{amssymb}
\begin{document}
$$ a \nmid b $$
$$ \frac{a}{b} \nmid c $$
$$ if \;\; a \nmid bc \;\; then \;\; a \nmid c 5 $$
\end{document}
Output :