The Joint Distribution
Last updated
Last updated
Recipe for making a joint distribution of M variables:
Make a truth table listing all combinations of values of your variables (if there are M Boolean variables then the table will have 2M rows).
For each combination of values, say how probable it is.
If you subscribe to the axioms of probability, those numbers must sum to 1.
Once you have the JD you can ask for the probability of any logical expression involving your attribute.
P(E) = ∑ P(row)
P(poor male) = 0.46
P(poor) = 0.75
P(E1|E2) = (P(E1∧ E2)) / (P(E2)) = (∑ P(row)) / (∑ P(row))
P(Male | Poor) = 0.46 / 0.75 = 0.61
Good news.
Once you have a joint distribution, you can ask important questions about stuff that involves a lot of uncertainty.
Bad news.
Impossible to create for more than about ten attributes because there are so many numbers needed when you build it.