Probability of Three Events Calculator

Calculate combined probability of three events using inclusion-exclusion. Supports independent and dependent events with Venn diagram regions, conditional probabilities, and repeated trials.

P(A∪B∪C)
68.5000%
At least one event occurs (inclusion-exclusion)
P(A∩B∩C)
3.0000%
All three events occur
P(none)
31.5000%
No event occurs
P(exactly 1)
45.0000%
XOR: one and only one event
P(B|A)
30.0000%
B given A occurred
P(C|A∩B)
25.0000%
C given both A and B occurred

Exactly k Events

k eventsProbabilityCumulative (≤ k)Visual
Exactly 031.500%31.500%
Exactly 145.000%76.500%
Exactly 220.500%97.000%
Exactly 33.000%100.000%

Venn Diagram Region Probabilities

RegionEventsProbability
None31.500%
A only21.000%
B only13.500%
C only10.500%
A ∩ B9.000%
A ∩ C7.000%
B ∩ C4.500%
A ∩ B ∩ C3.000%

Pairwise Intersections

IntersectionProbabilityIndependent would beRatio
A∩B12.000%12.000%1.000
A∩C10.000%10.000%1.000
B∩C7.500%7.500%1.000
A∩B∩C3.000%3.000%1.000

Over 5 Trials

P(all three at least once in 5)
14.127%
1 − (1−3.00%)^5
P(any event at least once in 5)
99.690%
1 − (31.50%)^5
Planning notes, formulas, and examples

About the Probability of Three Events Calculator

The probability of three events calculator works through the full three-set picture for events A, B, and C. It calculates the union P(A∪B∪C), the exactly-k breakdown, all eight Venn regions, and the conditional probabilities that fall out of the same data.

Use the independent mode when pairwise and triple intersections should be derived from the marginal probabilities. Use the dependent mode when intersections are known from data or when the events influence one another, such as related test results, overlapping risks, or linked production defects.

The result is a compact view of a problem that is easy to miscount by hand because every overlap changes the final total.

When This Page Helps

Three-event probability problems are awkward to do manually because every overlap changes the answer. This calculator keeps the inclusion-exclusion bookkeeping in one place, which is useful when you need the union, the exactly-one / exactly-two / exactly-three split, or the probability of no events occurring at all.

It is most useful when the same three outcomes can happen together in different combinations, such as independent component failures, overlapping survey responses, or multi-stage decision flows.

How to Use the Inputs

  1. Select whether the three events are independent or dependent.
  2. Enter P(A), P(B), and P(C) as percentages.
  3. For dependent events, also enter pairwise intersections P(A∩B), P(A∩C), P(B∩C) and the triple intersection P(A∩B∩C).
  4. Set the number of trials to see repeated-event probabilities.
  5. Review the "Exactly k" table for the distribution of how many events occur.
  6. Check the Venn diagram regions for each of the 8 possible outcomes.
Formula used
P(A∪B∪C) = P(A) + P(B) + P(C) − P(A∩B) − P(A∩C) − P(B∩C) + P(A∩B∩C). P(exactly 1) = P(A) + P(B) + P(C) − 2P(A∩B) − 2P(A∩C) − 2P(B∩C) + 3P(A∩B∩C).

Example Calculation

Result: P(A∪B∪C) = 68.5%, P(A∩B∩C) = 3%, P(none) = 31.5%

With independent events, P(A∩B) = 12%, P(A∩C) = 10%, P(B∩C) = 7.5%, P(A∩B∩C) = 3%. Applying inclusion-exclusion: 40 + 30 + 25 − 12 − 10 − 7.5 + 3 = 68.5%. Exactly one event occurs 47.5% of the time.

Tips & Best Practices

  • For independent events, the "Ratio" column in pairwise intersections should always be 1.000 — deviations indicate dependence.
  • The eight Venn diagram regions always sum to 100% (one for each combination of A, B, C occurring or not).
  • P(exactly k) values also sum to 100% — events 0 through 3 cover all possibilities.
  • Negative region probabilities indicate inconsistent inputs for dependent events — ensure intersection values are logically valid.
  • Over n trials, the chance of "all three" occurring at least once grows rapidly with the single-trial P(A∩B∩C).
  • Conditional probability P(C|A∩B) = P(A∩B∩C) / P(A∩B) — it measures how C relates to the joint occurrence of A and B.

Inclusion-Exclusion For Three Events

For two events, the union only needs one subtraction term. For three events, each pairwise overlap must be removed once and the triple overlap added back once:

P(A∪B∪C) = P(A) + P(B) + P(C) - P(A∩B) - P(A∩C) - P(B∩C) + P(A∩B∩C).

That alternating pattern is the core reason three-event problems are harder than they first appear.

Independent And Dependent Cases

In the independent case, the calculator derives every intersection from the marginals. In the dependent case, the intersections must already be consistent with one another. That makes the calculator useful for checking whether a set of claimed probabilities is mathematically possible.

Reading The Region Table

The eight Venn regions correspond to every possible on/off combination of A, B, and C. The table is the easiest way to spot whether the mass is concentrated in shared overlaps, mostly in single-event regions, or spread evenly across the sample space.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • It prevents double-counting when computing the union of events. For three events: add individual probabilities, subtract pairwise intersections, then add back the triple intersection. Without this correction, overlapping regions would be counted multiple times.