If there is a sequence of tasks such that:
- there are ways to do the first task
- to do the second
- to do the th task ? Then, there are ways to do the whole sequence of tasks
title: Example 1
If each number plate contains a sequence of three letters followed by three digits (and no such sequence is prohibited), then the number of available different number plates is:
$$
26 \cdot 26 \cdot 26 \cdot 10 \cdot 10 \cdot 10 = 17, 576, 000
$$Usage with functions
If and then the number of different functions is: ?
title: Example 2 (with functions)
Let $A = \{ a,b,c \}, B = \{ d,e \} \rightsquigarrow n = 3, m = 2$.
- There are $2$ ways to choose a value for $a$.
Then there are $2$ ways to choose a value for $b$ and then $c$.
Hence $2^3 = 8$.