If I define 3 variables that can be either set to the values high, medium, or low, like this:
High High High, or
High High Low, or
High Low High, or
High High Medium
And so on,
How many combinations can there be in total?
If I define 3 variables that can be either set to the values high, medium, or low, like this:
High High High, or
High High Low, or
High Low High, or
High High Medium
And so on,
How many combinations can there be in total?
Hint:
It can clearly be seen from your examples that: repetition is allowed and order matters.
Taking these two factors into account, we have three possibilities for each place: high, medium and low. Each of the three places have these options. So, a total of $3\times 3\times 3 = 3^3 = 27$. Hope it helps.
You have $3$ possibilities (High, medium, low) for each of the three variables. So, in total, you have $3^3=27$ possibilities.