Created
June 2, 2017 13:44
-
-
Save hyuki0000/6e557fee51c20e2d5715fe44e1e7875f to your computer and use it in GitHub Desktop.
正の整数の分類
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
 | |
$n$を正の整数とする。$n$を割り切る正の整数が$1$個しかないとき、$n$を<b>単数</b>という。ちょうど$2$個あるとき、$n$を<b>素数</b>という。$3$個以上あるとき、$n$を<b>合成数</b>という。 | |
$$ | |
\begin{array}{|c|c|c|c|c|c|c|c|c|c} | |
\hline | |
\textbf{単数} & 1 & & & & & & & & & & \\ | |
\hline | |
\textbf{素数} & & 2 & 3 & & 5 & & 7 & & & & \\ | |
\hline | |
\textbf{合成数} & & & & 4 & & 6 & & 8 & 9 & 10 & \\ | |
\hline | |
\end{array} | |
$$ |
Author
hyuki0000
commented
Jun 2, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment