Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Probability notation [closed]

I want to ask you about the notation in probability.

I know that

P(A | B) = the conditional probability that event A occurs given that event B has occurred already

But I cannot find what A,B or in my case P(A|B,C). I suggest it means "the conditional probability that event A occurs given that B and C BOTH occurred already"

I don't know what the comma means.

Can you help me ?

like image 672
user1328370 Avatar asked Aug 31 '12 10:08

user1328370


People also ask

What does ∩ mean in statistics?

Definition: intersections. The intersection of events A and B, denoted A∩B, is the collection of all outcomes that are elements of both of the sets A and B.

What does the notation P A ∩ B stand for?

P(A∩B) = Probability of happening of both A and B.

How do you write probability notation?

The probability of an event can only be between 0 and 1 and can also be written as a percentage. The probability of event A is often written as P ( A ) P(A) P(A)P, left parenthesis, A, right parenthesis.


2 Answers

You are basically correct.

P(A| B) is the probability of A given B. P(A| B, C) is the probability of A given (B and C).

You could just as easily write it as P(A| B ∧ C) but it is notational convention to use a comma. Think of everything after the vertical bar as a list of the given things, separated by commas.

(And note that the vertical bar is a very high precedence operator, so to speak.)

like image 125
Novak Avatar answered Sep 19 '22 12:09

Novak


This is according to Bayes rule

P(C|A,B) = P(A,B|C).P(C) / P(A,B)

like image 27
amitchhajer Avatar answered Sep 18 '22 12:09

amitchhajer