更新
This commit is contained in:
parent
b4db371e56
commit
aa85ea96a7
@ -9,3 +9,5 @@
|
|||||||
从10人中选出第1名有10种可能,从剩下的10-1=9人中选出第2名有9种可能,再从剩下的9-1=8人中选出第3名有8种可能,这三步的可能数用**乘法原理**相乘,$10\times9\times8=720$ 即总的排列数。排列数可写作:
|
从10人中选出第1名有10种可能,从剩下的10-1=9人中选出第2名有9种可能,再从剩下的9-1=8人中选出第3名有8种可能,这三步的可能数用**乘法原理**相乘,$10\times9\times8=720$ 即总的排列数。排列数可写作:
|
||||||
|
|
||||||
$$ \begin{align} A_{10}^3 &= \underbrace{10\times9\times8}_{3个} = 720 \newline A_n^n &= \underbrace{n\times(n-1)\times(n-2)\times\cdots\times1}_{n个} = n! (A_n^n叫全排列,n!叫做n的阶乘) \newline A_{n}^{m} &= \underbrace{n\times(n-1)\times(n-2)\times\cdots\times(n-m+1)}_{m个} \newline &= \dfrac{n\times(n-1)\times(n-2)\times\cdots\times(n-m+1)\times(n-m)\times(n-m-1)\times(n-m-2)\times\cdots\times1}{(n-m)\times(n-m-1)\times(n-m-2)\times\cdots\times1} \newline &= \dfrac{n!}{(n-m)!} \end{align}$$
|
$$ \begin{align} A_{10}^3 &= \underbrace{10\times9\times8}_{3个} = 720 \newline A_n^n &= \underbrace{n\times(n-1)\times(n-2)\times\cdots\times1}_{n个} = n! (A_n^n叫全排列,n!叫做n的阶乘) \newline A_{n}^{m} &= \underbrace{n\times(n-1)\times(n-2)\times\cdots\times(n-m+1)}_{m个} \newline &= \dfrac{n\times(n-1)\times(n-2)\times\cdots\times(n-m+1)\times(n-m)\times(n-m-1)\times(n-m-2)\times\cdots\times1}{(n-m)\times(n-m-1)\times(n-m-2)\times\cdots\times1} \newline &= \dfrac{n!}{(n-m)!} \end{align}$$
|
||||||
|
|
||||||
|
公式1:$ A_n^n = n! $
|
||||||
|
Loading…
Reference in New Issue
Block a user