Permutations and Combinations - # 2

Post Reply
User avatar
Jason
Site Admin
Posts: 806
Joined: Sun Dec 21, 2025 8:56 pm

ex. a

:?: How many two-note permutations can be made with a snare, bass drum, and tom note, without repetition? What is the big idea you see?
\(Combo \,\,1 \)

\(P1: B-T\)

\(P2: T-B\)


\(Combo \,\,2\)

\(P3: T-S\)

\(P4: S-T\)


\(Combo\,\,3\)

\(P5: B-S\)

\(P6: S-B\)
:arrow:
P = 6, You see 6 different unique arrangements (permutations).

\(P(n, r) = \dfrac{n!}{(n - r)!}\)

\(P(3, 2) = \dfrac{3!}{(3 - 2)!} = \dfrac{6}{1} = 6\)

ex. b

:?: How many combinations in ex. a? What is the big idea you see?
\(C(n, r) = \dfrac{n!}{r! (n - r)!}\)

\(C(3, 2) = \dfrac{3!}{2!(3 - 2)!} = \dfrac{6}{2} = 3\)
:arrow:
C = 3, We see 3 different unique groupings. That would be combinations.
 

POSTREACT(ions) SUMMARY

Post Reply