Variations with repetition

Where $A$ is a set of $n$ elements. The variations with repetition of $n$ elements taken $k$ by $k$ are the arranged groups formed by $k$ elements from $A$ (which may be repeated). This is represented as $VR_{n,k}$.

For example,

If the set of $5$ elements is $A=\{ a,b,c,d,e \}$:

The following formula gives us a much quicker way of counting all the variations with repetition of $n$ elements taken $k$ by $k$. There is:$$VR_{n,k}=n^k$$

In the previous example,

The number of variations with repetition of 5 elements of A taken in threes is: $$VR_{5,3}=5^3=5 \cdot 5 \cdot 5 =125$$

It is visibly much more practical to use the formula than to try all the possibilities by hand!

Practice exercises