Main content
AP®︎/College Statistics
Course: AP®︎/College Statistics > Unit 7
Lesson 3: Conditional probability- Conditional probability and independence
- Conditional probability with Bayes' Theorem
- Conditional probability using two-way tables
- Calculate conditional probability
- Conditional probability and independence
- Conditional probability tree diagram example
- Tree diagrams and conditional probability
© 2023 Khan AcademyTerms of usePrivacy PolicyCookie Notice
Conditional probability with Bayes' Theorem
AP.STATS:
VAR‑4 (EU)
, VAR‑4.D (LO)
, VAR‑4.D.1 (EK)
CCSS.Math: , , , Conditional probability visualized using trees. Created by Brit Cruise.
Want to join the conversation?
- This is awesome! Your videos will really help confused students over at Udacity's stats class--this is one of the first things they learn. :) Thank you for this!(122 votes)
- Just got stuck on udacities 'Bayes Rule' chapter and decided to look at KA! :)(42 votes)
- At, Brit says that the probability of Bob picking out the fair coin was 1/3. But since he picked 1 out of 2 coins, fair and unfair, at random, wouldn't the probability just be 1/2? 1:28(14 votes)
- Yes, picking one out of the two coins at random would result in a 1/2 probability of having picked the fair coin. However, the question was, what is the probability of having picked the fair coin, GIVEN THAT the coin came up heads. As the title "Conditional Probability" suggests, the probability of having picked the fair coin is dependant on the evidence we have (it came up heads)
Consider the opposite scenario - the coin comes up tails when flipped. Before tossing it, you would be correct in saying there's a 1/2 chance you're holding the fair coin. But given the new evidence we have from the flip - it came up tails - you could be 100% certain of having the fair coin, since the double sided coin only has heads. The probability of the event (you picked the fair coin) is dependant on the evidence (the coin came up tails).(43 votes)
- I just didn't understand the "rules" of the "game". He picks a random coin for each flip OR he picks a random coin only at the beginning, continuing with that one to the rest of the problem?(9 votes)
- random coin for every flip(0 votes)
- If f I have an unfair coin, with a possibility of 2/3 to land on T and 1/3 to land on H, and I flip it 3 times, what are the chances of me to result with 2 Tails and 1 Head?
The order isn't important. Heads can be the first coin, the second or the third.(3 votes)- Let's pretend it's fair, first.
The long way, you can just list them. Three flips can be
HHH
HHT, HTH, THH
HTT, THT, TTH
TTT
There are 8 possibilities, and there are 3 ways to make 2T 1H, so it's 3/8.
To use math, you could do this: (p represents H, q represents T, and both are 1/2)
p^3 + 3p^2q + 3pq^2 + q^3 (notice how this matches with the possibilities listed)
This is the binomal expansion of (p+q)^3, 3 being the number of tosses you have. If you want a different number of tosses, you just change the exponent for (p+q)^n.
This will always add to one, because that represents 100% of the possibilities. Each section represents the odds of a particular possibility. Since you want 2 tails and 1 head, you choose the one that includes pq^2.
3(1/2)(1/2)^2 = .375, which is equal to 3/8, same as before
Now that I've demonstrated that the equation works, you can substitute any probability in for p and q, as long as they add up to 1. You want p=1/3 and q=2/3, which gives us
3pq^2 = 3(1/3)(2/3)^2 = .4444 or 4/9. So the chances of getting 2 tails and 1 heads in three flips is 4/9, or about 44%.(10 votes)
- How come we cut the "tails" branch? Why not leave it and use it to calculate the probability?(3 votes)
- Another guess (similar to Sky's):
You can cut the "tails" branches because the outcome of the toss has already been decided, and you know in advance tails is not possible. This tells you that you should not consider "tails" in your list of possible outcomes when you're calculating the probability (probability being the ratio of all favorable outcomes to all possible outcomes). In 'regular' probability, you don't know any of the outcomes in advance, so all outcomes are need to be counted as possible when you calculate your ratio.(4 votes)
- At, he changes the amount of leaves for each of the three coins to six leaves each. Why is this necessary? I thought you can find the probability from the original probabilities (1/2 and 2/3, in this case)? Thanks 3:43(4 votes)
- He just wants to show it more visually for those who have problems understanding(3 votes)
- P(biased|head) = P(head|biased)P(biased)/P(head) = (2/3)*(1/3)/(1/2) = 4/9. But the tree calculates it to be 4/10. Where did I go wrong ?(3 votes)
- P(head) does not equal 1/2
P(head) = P(fair) * P(head|fair) + P(biased) * P(head|biased)
P(head) = 2/3 * 1/2 + 1/3 * 2/3 = 5/9
P(biased|head) = P(head|biased)P(biased)/P(head) = 2/3 * 1/3 /(5/9) = 2/5 = 4/10(4 votes)
- This video is identical to the previous one.(4 votes)
- can any one explain Bayes theorem on this example
https://www.khanacademy.org/math/probability/probability-and-combinatorics-topic/probability-combinatorics/v/conditional-probability-and-combinations(2 votes) - Vaguely related question: What if we had a box, and we have no statistical data about typical contents of boxes, what is the probability that the content of the box is absolutely nothing? Is it 50% for something (with the tree then branching out for all possible "somethings") to 50% for nothing, or is the probability of nothing equally small as any other outcome, such as say a pink giraffe?(2 votes)
- > "what is the probability that the content of the box is absolutely nothing? Is it 50% ..."
If we have no information on the contents of boxes, then we can't say anything regarding the probability of the box being empty. Just because we can boil it down to two outcomes ("empty" vs. "not empty") does not mean that we can reasonably assign equal probabilities to those two outcomes.
To take a silly example: let's consider the event of being struck by lightning during a thunderstorm. There are two options: struck or not-struck, yet these clearly do not have equal probability.(1 vote)