Is anyone here familiar with probability? I have a project one in due tomorrow as part of my final and I can't seem to find any good web sources to double check my work. If mostly deals with the counting principle and combinations. If anyone can look this over and see if I made any errors, I would appreciate it:
I am not reducing my answers, if you are wondering.
A bin contains 12 colored chips, of which 5 are red, 4 are white, and 3 are blue. If you select two chips (one at a time) at random with replacement, first count how many total outcome this experiment has and then find each probability:
total possible outcomes: 12*12 = 144
P(both are blue): 3/12 * 3/12 = 9/144
P(the 1st is red and the 2nd is white): 5/12 * 4/12 = 20/144
P(neither chip is red): 7/12 * 7/12 = 49/144
P(at least one is red): 144/144 - 49/144 = 95/144
A license plate consists of 3 letter of the alphabet followed by 4 digits (26 letters, 10 digits). Find the number of ways that a license plate can be created in each scenario:
with repetition allowed: 26 * 26 * 26 * 10 * 10 * 10 * 10 = 17576000
without repetition: 26 * 25 * 24 * 10 * 9 * 8 * 7 = 78624000
with vowels (A, E, I, O, U) and no zeroes (NO repetition): 5 * 4 * 3 * 9 * 8 * 7 * 6 = 181440
A poker hand consists of 5 cards dealt from a standard deck of 52 cards. Knowing that the cards are dealt without replacement and the order they are dealt does not matter, determine each of the following:
How many distinct poker are hands are possible: 52 C 5 = 2598960
Find the probability of the being dealt only hearts: 13 C 5 = 1287, 1287/2598960
Find the probability of the being dealt all four aces: 4 C 4 = 1, 48 C 1 = 48, 48 * 1 = 48, 48/2598960
I am not reducing my answers, if you are wondering.