🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

"Stuck b/w joint probablity and conditional probability"

Started by
4 comments, last by sjhalayka 6 years, 5 months ago

What is the difference between joint and conditional probability?

Originally asked here: http://answers.opencv.org/question/183825/stuck-bw-joint-probablity-and-conditional-probablity/

Advertisement

Have you found the definitions? They are certainly not the same thing.

Someone defined them using cards: https://www.quora.com/What-is-the-difference-between-conditional-probability-and-joint-probability

I am looking for extra examples.

Say there is a rare disease that affects 1 person in 100,000. We develop a test for it, but it's not perfect: It has no false negatives, but it has a 1% chance of testing positive on patients that don't have the disease.

You can make a table like this:



               SICK   HEALTHY

POSITIVE     0.00001  0.0099999

NEGATIVE     0        0.9899901

The numbers in that table are joint probabilities (e.g., the probability that someone is healthy and gets a negative result in the test).

Now, if you test positive and want to know what's the probability that you are sick, the number you are looking for is called the conditional probability of being sick given that you tested positive. That number is 0.00001/(0.00001+0.0099999) = 0.00099901...

 

Thanks again alvaro! I posted a link to your explanation on answers.opencv.org.

This topic is closed to new replies.

Advertisement