We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a6506c commit 0245e8eCopy full SHA for 0245e8e
1 file changed
src/chapters/1/sections/counting/problems/11.tex
@@ -2,10 +2,10 @@
2
\item Each of the $n$ inputs has $m$ choices for an output, resulting in
3
$$m^{n}$$ possible functions.
4
5
-\item If $n \geq m$, at least two inputs will be mapped to the same output,
+\item If $n > m$, at least two inputs will be mapped to the same output,
6
so no one-to-one function is possible.
7
8
- If $n < m$, the first input has $m$ choices, the second input has $m - 1$
+ If $n \leq m$, the first input has $m$ choices, the second input has $m - 1$
9
choices, and so on. The total number of one-to-one functions then is
10
$$m(m-1)(m-2)\dots(m-n+1) = \frac{m!}{(m-n)!} $$
11
-\end{enumerate}
+\end{enumerate}
0 commit comments