The probability of blue ball is 0.5 and the probability of red ball is 0.3. I need the probability of pulling out 3 blue balls and one red ball (I always return the ball back inside). I have 4 options:
B B B R
B B R B
B R B B
R B B B
So my probability is 4 x (0.5)(0.5) (0.5)(0.3) I guess. My question is how can I find the number of options 4 in case it is too big and I can't find it just by listing my options. C might help cause 4c3 gives 4 and also 4c2 gives 6 which is correct but I don't know why.
Thank you!