I'm having trouble getting to a formula on how to get the number of combinations from flipping a coin n times if the order doesn't matter...
I know that to get the total number of combinations is 2^n... So if a coin was flipped twice, combinations would be 2^2=4:
- Heads,Heads
- Heads,Tails
- Tails,Heads
- Tails,Tails
But what if I don't care about the order,so for example:
- Heads,Tails = Tails,Heads
Then I would have only 3 combinations.
I've come to the conclusion that the formula is n + 1 ... n being the number of times the coin is being flipped.
But what if it was a dice with 6 sides, or n sides... Would the formula remain the same or what would the formula be then?