Mathematics Lesson 62 - Probability Rules Lesson Title | Dataplexa

Probability Rules

Once we understand what probability is, the next step is learning how to combine and manipulate probabilities.

Probability rules allow us to answer questions like:

  • What is the chance of this OR that?
  • What is the chance of this AND that?
  • What is the chance that something does NOT happen?

These rules are essential for school exams, competitive exams, real-world decision making, statistics, and machine learning.


Why Probability Rules Are Important

Real-world problems rarely involve just one simple event.

Probability rules help us:

  • Combine multiple events correctly
  • Avoid double counting
  • Handle complex situations logically
  • Build advanced probability models

Without rules, probability quickly becomes misleading.


Basic Probability Properties

Every probability must satisfy:

  • 0 ≤ P(A) ≤ 1
  • P(S) = 1 (sample space)
  • P(∅) = 0 (impossible event)

These properties always hold.


Complement Rule

The complement of an event A means “A does NOT happen”.

It is written as:

A′ or Ac

The complement rule states:

P(A′) = 1 − P(A)

This is one of the most useful rules.


Example: Complement Rule

If the probability of rain today is 0.3, then the probability that it does NOT rain is:

1 − 0.3 = 0.7

This idea appears frequently in exams.


Addition Rule (OR Rule)

The addition rule is used when we want:

Probability of A OR B

This means at least one of the events occurs.


Addition Rule (General Form)

For any two events A and B:

P(A ∪ B) = P(A) + P(B) − P(A ∩ B)

The subtraction avoids double counting.


Why Do We Subtract the Intersection?

When adding P(A) and P(B), the outcomes common to both events get counted twice.

Subtracting P(A ∩ B) fixes this mistake.

This logic is critical for accuracy.


Example: Addition Rule

Suppose:

  • P(A) = 0.4
  • P(B) = 0.5
  • P(A ∩ B) = 0.2

Then:

P(A ∪ B) = 0.4 + 0.5 − 0.2 = 0.7


Mutually Exclusive Events

Two events are mutually exclusive if they cannot occur at the same time.

That means:

P(A ∩ B) = 0

Examples:

  • Getting Head or Tail in a single coin toss
  • Rolling a 2 or a 5 in one die roll

Addition Rule for Mutually Exclusive Events

If A and B are mutually exclusive:

P(A ∪ B) = P(A) + P(B)

This is a simplified version of the OR rule.


Multiplication Rule (AND Rule)

The multiplication rule is used when we want:

Probability of A AND B

This means both events occur.


Independent Events

Two events are independent if the occurrence of one does not affect the other.

For independent events:

P(A ∩ B) = P(A) × P(B)

This rule is very important.


Example: Independent Events

Toss a coin and roll a die.

  • P(Head) = 1/2
  • P(4 on die) = 1/6

Since they are independent:

P(Head AND 4) = (1/2) × (1/6) = 1/12


Dependent Events

Events are dependent if one event affects the probability of another.

This happens often in real life.

Example:

  • Drawing cards without replacement

Conditional Probability

Conditional probability measures the probability of an event given that another event has already occurred.

It is written as:

P(A | B)

Read as “Probability of A given B”.


Conditional Probability Formula

The formula is:

P(A | B) = P(A ∩ B) / P(B)

This formula connects AND and conditional probability.


Example: Conditional Probability

Suppose:

  • P(A ∩ B) = 0.2
  • P(B) = 0.5

Then:

P(A | B) = 0.2 / 0.5 = 0.4


Relationship Between Independence and Conditional Probability

If A and B are independent:

P(A | B) = P(A)

This means knowing B gives no extra information about A.


Probability Rules in Daily Life

Probability rules are used when:

  • Assessing insurance risk
  • Predicting weather
  • Evaluating medical tests
  • Making business decisions

Good decisions rely on correct rules.


Probability Rules in Competitive Exams

Exams commonly test:

  • OR rule vs AND rule
  • Independent vs dependent events
  • Complement and conditional probability

Careful reading of the question is crucial.


Probability Rules in Data Science

Data science uses probability rules to:

  • Combine uncertainties
  • Model real-world randomness
  • Estimate likelihoods

All statistical models rely on these rules.


Probability Rules in Machine Learning

Machine learning models:

  • Combine probabilities
  • Use conditional probabilities
  • Estimate likelihoods of outcomes

Bayesian models depend heavily on these rules.


Common Mistakes to Avoid

Students often make these mistakes:

  • Using addition instead of multiplication
  • Forgetting to subtract intersection
  • Confusing independence with mutual exclusivity

Always identify the event type first.


Practice Questions

Q1. If P(A) = 0.6, what is P(A′)?

0.4

Q2. When can we use P(A ∩ B) = P(A) × P(B)?

When events are independent

Q3. What does P(A | B) represent?

Probability of A given B has occurred

Quick Quiz

Q1. Do mutually exclusive events occur together?

No

Q2. Is conditional probability used in ML?

Yes

Quick Recap

  • Complement rule: 1 − P(A)
  • Addition rule handles OR events
  • Multiplication rule handles AND events
  • Conditional probability handles dependence
  • Foundation for statistics and AI

With probability rules mastered, you are now ready to explore Combinatorics, where counting meets probability.