User:IssaRice/Summary of counting techniques: Difference between revisions

From Machinelearning
No edit summary
No edit summary
Line 4: Line 4:
! Description !! Set representing counting problem !! number of ways to count
! Description !! Set representing counting problem !! number of ways to count
|-
|-
| || <math>\{(a_1, \ldots, a_k) : a_1,\ldots, a_k \in A\}</math> ||
| || <math>\{(a_1, \ldots, a_k) : a_1,\ldots, a_k \in A\}</math> || <math>n^k</math>
|-
|-
| || <math>\{\{a_1, \ldots, a_k\} : a_1,\ldots, a_k \in A\}</math> ||  
| || <math>\{\{a_1, \ldots, a_k\} : a_1,\ldots, a_k \in A\}</math> ||  
|-
|-
| || <math>\{(a_1, \ldots, a_k) : a_1,\ldots, a_k \in A \text{ and all }a_i\text{ distinct}\}</math> ||
| || <math>\{(a_1, \ldots, a_k) : a_1,\ldots, a_k \in A \text{ and all }a_i\text{ distinct}\}</math> || <math>P(n,k) = \frac{n!}{(n-k)!} = n(n-1)\cdots (n-(k+1))</math>
|-
|-
| || <math>\{\{a_1, \ldots, a_k\} : a_1,\ldots, a_k \in A \text{ and all }a_i\text{ distinct}\}</math>
| || <math>\{\{a_1, \ldots, a_k\} : a_1,\ldots, a_k \in A \text{ and all }a_i\text{ distinct}\}</math> || <math>\binom n k = P(n,k)/(k!) = \frac{n!}{k!(n-k)!}</math>
|-
|-
| || <math>\{(a,b) : a \in A \text{ and } b \in B\}</math> ||
| || <math>\{(a,b) : a \in A \text{ and } b \in B\}</math> ||

Revision as of 02:15, 14 August 2019

Let A be a set with n elements, and let B be a set with m elements.

Description Set representing counting problem number of ways to count
{(a1,,ak):a1,,akA} nk
{{a1,,ak}:a1,,akA}
{(a1,,ak):a1,,akA and all ai distinct} P(n,k)=n!(nk)!=n(n1)(n(k+1))
{{a1,,ak}:a1,,akA and all ai distinct} (nk)=P(n,k)/(k!)=n!k!(nk)!
{(a,b):aA and bB}