Skip to main content
返回术语表
statistics难度:中级probabilitystatistics
Share

条件概率tiáojiàn gàilǜ

conditional probability
4 分钟阅读
更新于 2025-11-02
已完成

Core Concept

Conditional Probability is the probability that event AA occurs given that event BB has occurred, denoted P(AB)P(A|B).

Definition

Let A,BA, B be two events with P(B)>0P(B) > 0. The conditional probability of AA given BB is:

P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

Understanding:

  • Numerator P(AB)P(A \cap B): Probability of both AA and BB
  • Denominator P(B)P(B): Probability of BB
  • Meaning: Probability of AA in the "new sample space" where BB occurred

Properties

1. Non-negativity

0P(AB)10 \leq P(A|B) \leq 1

2. Certain Event

P(ΩB)=1P(\Omega|B) = 1

3. Addition Rule

If A1,A2A_1, A_2 are mutually exclusive: P(A1A2B)=P(A1B)+P(A2B)P(A_1 \cup A_2|B) = P(A_1|B) + P(A_2|B)

Multiplication Rule

From the definition, we get the multiplication rule:

P(AB)=P(B)P(AB)P(A \cap B) = P(B) \cdot P(A|B) P(AB)=P(A)P(BA)P(A \cap B) = P(A) \cdot P(B|A)

Independence

Independent Events

If events AA and BB are independent: P(AB)=P(A)P(A|B) = P(A) P(BA)=P(B)P(B|A) = P(B) P(AB)=P(A)P(B)P(A \cap B) = P(A) \cdot P(B)

Meaning: Occurrence of BB doesn't affect probability of AA.

Mutually Exclusive vs Independent

  • Mutually exclusive: AB=A \cap B = \emptyset, cannot occur together
  • Independent: P(AB)=P(A)P(B)P(A \cap B) = P(A) \cdot P(B), occurrence is independent

Note: Mutually exclusive events are generally not independent (unless one has probability 0)

CSCA Practice Problems

[Example 1] Basic (Difficulty ★★☆☆☆)

A bag has 3 red and 2 white balls. Draw 2 balls without replacement:

  1. Probability first is red: P(A)P(A)
  2. Given first is red, probability second is red: P(BA)P(B|A)

Solution:

  1. P(A)=35P(A) = \frac{3}{5}

  2. After drawing red, 2 red and 2 white remain: P(BA)=24=12P(B|A) = \frac{2}{4} = \frac{1}{2}

Answer: P(A)=35P(A) = \frac{3}{5}, P(BA)=12P(B|A) = \frac{1}{2}


[Example 2] Intermediate (Difficulty ★★★☆☆)

Flip two fair coins. Let:

  • AA: At least one heads
  • BB: Both heads

Find P(BA)P(B|A).

Solution:

Sample space: Ω={HH,HT,TH,TT}\Omega = \{HH, HT, TH, TT\}

Event AA: At least one heads, A={HH,HT,TH}A = \{HH, HT, TH\}, P(A)=34P(A) = \frac{3}{4}

Event BB: Both heads, B={HH}B = \{HH\}, P(B)=14P(B) = \frac{1}{4}

Intersection: AB={HH}A \cap B = \{HH\}, P(AB)=14P(A \cap B) = \frac{1}{4}

P(BA)=P(AB)P(A)=1/43/4=13P(B|A) = \frac{P(A \cap B)}{P(A)} = \frac{1/4}{3/4} = \frac{1}{3}

Answer: 13\frac{1}{3}

Bayes' Theorem

P(BiA)=P(Bi)P(ABi)j=1nP(Bj)P(ABj)P(B_i|A) = \frac{P(B_i) \cdot P(A|B_i)}{\sum_{j=1}^{n} P(B_j) \cdot P(A|B_j)}

Application: Find probability of "cause" given "effect"

Common Misconceptions

❌ Misconception 1: Wrong formula

Wrong: P(AB)=P(A)P(B)P(A|B) = \frac{P(A)}{P(B)}

Correct: P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

❌ Misconception 2: Confusing P(AB)P(A|B) and P(BA)P(B|A)

Wrong: Thinking P(AB)=P(BA)P(A|B) = P(B|A)

Correct: Generally P(AB)P(BA)P(A|B) \neq P(B|A)

Study Tips

  1. Understand definition: Probability in new sample space
  2. Master formula: P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}
  3. Distinguish concepts: Mutually exclusive vs independent
  4. Use tree diagrams: Helps visualize complex problems

💡 Exam Tip: Conditional probability is key in CSCA probability! Must understand deeply. Accounts for 30-40% of probability problems.