Achievable logoAchievable logo
Praxis Core: Math (5733)
Sign in
Sign up
Purchase
Textbook
Practice exams
Support
How it works
Exam catalog
Mountain with a flag at the peak
Textbook
Introduction
1. Number and quantity
2. Data analysis, statistics, and probability
2.1 Understanding central tendencies
2.2 Understanding and representing data
2.3 Interpreting data
2.4 Interpreting scatterplots
2.5 Computing probabilities
3. Algebra and geometry
Wrapping up
Achievable logoAchievable logo
2.5 Computing probabilities
Achievable Praxis Core: Math (5733)
2. Data analysis, statistics, and probability
Our Praxis Core: Math course is currently in development and is a work-in-progress.

Computing probabilities

9 min read
Font
Discuss
Share
Feedback

This section covers how to compute the probability of simple events, work with unions of mutually exclusive and non-mutually exclusive events, calculate intersections for independent events, and read one-way and two-way tables to find joint, marginal, and conditional probabilities.

Definitions
Probability
The likelihood of an event occurring, expressed as a number between 0 (impossible) and 1 (certain).
Sample space
The complete set of all possible outcomes of an experiment or situation, often denoted by the symbol S. For example, rolling a fair die has the sample space S={1,2,3,4,5,6}.
Event
A subset of outcomes from the sample space that we are interested in.
Mutually exclusive events
Events that cannot occur at the same time. For A and B,

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

Non-mutually exclusive events
Events that can occur together. For A and B,

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

Independent events
Events whose outcomes do not affect each other. For A and B,

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

Basic probability formula

Probability compares two things:

  • how many outcomes satisfy a condition (the event), to
  • how many outcomes are possible overall (the sample space).

So every probability question starts by identifying the sample space and the event of interest.

For any event E in a finite sample space:

P(E)=total number of possible outcomesnumber of favorable outcomes​.

Think of probability as a proportion. If an event occurs in half of all equally likely outcomes, its probability is 21​. If it occurs in one out of ten outcomes, its probability is 101​. Probabilities are always between 0 and 1, inclusive - 0 means the event cannot occur, and 1 means it must occur. When data is given as category counts, the grand total is the sum of all counts. Be careful with strict vs. inclusive inequalities when listing favorable outcomes: “less than 4” excludes 4, while “less than or equal to 4” includes it.

Many probability questions - especially on the Praxis - give information in tables instead of listing outcomes. The same proportion idea applies; you just read the favorable count and the total count from the table.

Reading two-way tables

A two-way table organizes counts for two categorical variables at the same time. Each cell shows how often a specific combination occurs, which lets you compute probabilities for single events and for relationships between events.

In a two-way table:

  • Rows represent categories of one variable.
  • Columns represent categories of a second variable.
  • Cell entries show joint counts.
  • Row and column totals summarize overall frequencies and form the basis for marginal probabilities.
  • The grand total represents the full sample space.

From a two-way table, you can compute three types of probabilities.

  • Joint probability - the chance that both events occur together. Divide one cell count by the grand total:

    P(A∩B)=NnAB​​.

  • Marginal probability - the chance of a single event, ignoring the other variable. Divide a row or column total by the grand total:

    P(A)=NnA​​,P(B)=NnB​​.

  • Conditional probability - the chance of one event given that another has occurred. The sample space shrinks to the relevant row or column total:

    P(A∣B)=nB​nAB​​.

The key difference between these three is what you treat as the sample space:

  • Joint and marginal probabilities use the entire table (grand total as denominator).
  • Conditional probabilities restrict attention to outcomes that satisfy the given condition (row or column total as denominator).

The conditional probability formula works even when you aren’t reading from a table - if you’re given P(A∩B) and P(B) directly, apply P(A∣B)=P(A∩B)/P(B) the same way.

Common mistake: Using the grand total as the denominator for a conditional probability is one of the most frequent errors. When a question says “given that…” or “among those who…”, your denominator is the row or column total for that condition - not the overall total.

Example: Joint, marginal, and conditional probabilities

A café records how customers pay (Cash, Card, or Mobile) across three days.

Day Cash Card Mobile
Monday 25 15 10
Tuesday 20 25 5
Wednesday 15 30 15

Sometimes a problem won’t provide totals. In that case, compute the row totals, column totals, and the grand total before finding probabilities.

Day Cash Card Mobile Total
Monday 25 15 10 50
Tuesday 20 25 5 50
Wednesday 15 30 15 60
Total 60 70 30 160

The row totals and column totals both add to 160, so the table is consistent.

The marginal probability of paying by card uses the Card column total divided by the grand total:

P(Card)=16070​=0.4375

The joint probability of a customer paying in cash on Tuesday uses the Tuesday-Cash cell divided by the grand total:

P(Tuesday and Cash)=16020​=0.125

The conditional probability of paying with mobile given it is Wednesday restricts the sample space to the Wednesday row - so the denominator is 60, not 160:

P(Mobile∣Wednesday)=6015​=0.25

Answer: P(Card)=0.4375,P(Tuesday and Cash)=0.125,P(Mobile∣Wednesday)=0.25

The same procedure works for any two categorical variables - grade level and flavor preference, survey responses by age group, or any other cross-tabulated data. The table layout and the three probability types stay exactly the same.

After you can compute probabilities from sample spaces and tables, the next step is combining events. Here, it matters whether events can overlap and whether one event changes the probability of the other.

Unions and intersections of events

When combining events, two common questions come up:

  • Are you finding the probability that at least one of two events occurs (a union)?
  • Or are you finding the probability that both events occur (an intersection)?

The correct rule depends on whether the events can occur together and whether they affect each other.

  • Union, mutually exclusive: If two events cannot occur at the same time, there is no overlap. The probability that at least one occurs is the sum of their individual probabilities:

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

  • Union, non-mutually exclusive: If two events can occur together, adding P(A) and P(B) counts the overlap twice. Subtract P(A∩B) once to correct for that:

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

  • Intersection, independent: If two events are independent, the occurrence of one does not change the probability of the other. Multiply their probabilities to get the probability that both occur:

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

    For example, flipping two heads in a row with a fair coin: each flip is independent, so P(head then head)=21​×21​=41​.

Mutually exclusive ≠ independent. These two terms are easy to confuse, but they describe very different relationships. Mutually exclusive events cannot happen together - if A occurs, B is ruled out entirely. That means knowing A occurred tells you B did not occur, so the events are actually dependent. Independent events, by contrast, have no effect on each other at all. If A and B are both mutually exclusive and have nonzero probabilities, they cannot be independent.

Example: Mutually exclusive vs. non-mutually exclusive unions

You draw one card from a standard 52-card deck.

Case 1 - Mutually exclusive: Let A = “draw a heart” and B = “draw a spade.” A card cannot be both, so the events are mutually exclusive.

P(A)=5213​,P(B)=5213​

P(A∪B)=5213​+5213​=5226​=21​

Case 2 - Non-mutually exclusive: Let A = “draw a heart” and B = “draw a king.” The king of hearts is both, so the events can overlap.

  • P(A)=5213​
  • P(B)=524​
  • P(A∩B)=521​ (the king of hearts)

P(A∪B)=5213​+524​−521​=5216​=134​

The only difference between the two cases is whether you subtract the overlap. When events can share outcomes, count that overlap and remove it once.

Answer: Case 1: 21​; Case 2: 134​

With and without replacement

When you draw multiple items from a finite set, you need to consider whether the first draw changes the second. That depends on whether you put the item back.

  • With replacement means the item is returned before the next draw. The sample space stays the same, so the probabilities stay the same across draws.

  • Without replacement means the item is not returned. The sample space shrinks after each draw, so the probabilities change.

Common mistake: Draws without replacement are dependent events - the outcome of the first draw changes the probabilities for the second. Don’t apply the independent-events multiplication rule P(A∩B)=P(A)×P(B) here. Instead, multiply P(first draw) by the conditional probability P(second draw∣first draw).

Example: Without replacement

A box contains 3 red and 2 blue balls (5 total). You draw two balls without replacement. What is the probability both are red?

On the first draw, there are 3 red balls out of 5 total:

P(red1​)=53​.

After drawing a red ball and not replacing it, there are 2 red balls left out of 4 total:

P(red2​∣red1​)=42​=21​.

Because both events must occur, multiply the probabilities:

P(both red)=53​×21​=103​=0.3.

Answer: 0.3

  • Understand the sample space: list or visualize all possible outcomes before identifying events

  • Identify the events clearly before computing probabilities

  • Use one-way tables: category count divided by grand total

  • Use two-way tables: joint cell divided by grand total for joint probability; row or column sum divided by grand total for marginal probability

  • Distinguish between joint, marginal, and conditional probabilities:

    • Joint - both events occur
    • Marginal - overall or total proportions
    • Conditional - restricted to a given condition or category
  • Combine events: mutually exclusive add; non-mutually exclusive add and subtract overlap; independent multiply

  • Handle replacement: with replacement probabilities stay constant; without replacement adjust the denominator after each draw

  • Verify results: probabilities lie between 0 and 1 and unions/intersections make sense in context

Sign up for free to take 5 quiz questions on this topic

All rights reserved ©2016 - 2026 Achievable, Inc.

Computing probabilities

This section covers how to compute the probability of simple events, work with unions of mutually exclusive and non-mutually exclusive events, calculate intersections for independent events, and read one-way and two-way tables to find joint, marginal, and conditional probabilities.

Definitions
Probability
The likelihood of an event occurring, expressed as a number between 0 (impossible) and 1 (certain).
Sample space
The complete set of all possible outcomes of an experiment or situation, often denoted by the symbol S. For example, rolling a fair die has the sample space S={1,2,3,4,5,6}.
Event
A subset of outcomes from the sample space that we are interested in.
Mutually exclusive events
Events that cannot occur at the same time. For A and B,

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

Non-mutually exclusive events
Events that can occur together. For A and B,

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

Independent events
Events whose outcomes do not affect each other. For A and B,

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

Basic probability formula

Probability compares two things:

  • how many outcomes satisfy a condition (the event), to
  • how many outcomes are possible overall (the sample space).

So every probability question starts by identifying the sample space and the event of interest.

For any event E in a finite sample space:

P(E)=total number of possible outcomesnumber of favorable outcomes​.

Think of probability as a proportion. If an event occurs in half of all equally likely outcomes, its probability is 21​. If it occurs in one out of ten outcomes, its probability is 101​. Probabilities are always between 0 and 1, inclusive - 0 means the event cannot occur, and 1 means it must occur. When data is given as category counts, the grand total is the sum of all counts. Be careful with strict vs. inclusive inequalities when listing favorable outcomes: “less than 4” excludes 4, while “less than or equal to 4” includes it.

Many probability questions - especially on the Praxis - give information in tables instead of listing outcomes. The same proportion idea applies; you just read the favorable count and the total count from the table.

Reading two-way tables

A two-way table organizes counts for two categorical variables at the same time. Each cell shows how often a specific combination occurs, which lets you compute probabilities for single events and for relationships between events.

In a two-way table:

  • Rows represent categories of one variable.
  • Columns represent categories of a second variable.
  • Cell entries show joint counts.
  • Row and column totals summarize overall frequencies and form the basis for marginal probabilities.
  • The grand total represents the full sample space.

From a two-way table, you can compute three types of probabilities.

  • Joint probability - the chance that both events occur together. Divide one cell count by the grand total:

    P(A∩B)=NnAB​​.

  • Marginal probability - the chance of a single event, ignoring the other variable. Divide a row or column total by the grand total:

    P(A)=NnA​​,P(B)=NnB​​.

  • Conditional probability - the chance of one event given that another has occurred. The sample space shrinks to the relevant row or column total:

    P(A∣B)=nB​nAB​​.

The key difference between these three is what you treat as the sample space:

  • Joint and marginal probabilities use the entire table (grand total as denominator).
  • Conditional probabilities restrict attention to outcomes that satisfy the given condition (row or column total as denominator).

The conditional probability formula works even when you aren’t reading from a table - if you’re given P(A∩B) and P(B) directly, apply P(A∣B)=P(A∩B)/P(B) the same way.

Common mistake: Using the grand total as the denominator for a conditional probability is one of the most frequent errors. When a question says “given that…” or “among those who…”, your denominator is the row or column total for that condition - not the overall total.

Example: Joint, marginal, and conditional probabilities

A café records how customers pay (Cash, Card, or Mobile) across three days.

Day Cash Card Mobile
Monday 25 15 10
Tuesday 20 25 5
Wednesday 15 30 15

Sometimes a problem won’t provide totals. In that case, compute the row totals, column totals, and the grand total before finding probabilities.

Day Cash Card Mobile Total
Monday 25 15 10 50
Tuesday 20 25 5 50
Wednesday 15 30 15 60
Total 60 70 30 160

The row totals and column totals both add to 160, so the table is consistent.

The marginal probability of paying by card uses the Card column total divided by the grand total:

P(Card)=16070​=0.4375

The joint probability of a customer paying in cash on Tuesday uses the Tuesday-Cash cell divided by the grand total:

P(Tuesday and Cash)=16020​=0.125

The conditional probability of paying with mobile given it is Wednesday restricts the sample space to the Wednesday row - so the denominator is 60, not 160:

P(Mobile∣Wednesday)=6015​=0.25

Answer: P(Card)=0.4375,P(Tuesday and Cash)=0.125,P(Mobile∣Wednesday)=0.25

The same procedure works for any two categorical variables - grade level and flavor preference, survey responses by age group, or any other cross-tabulated data. The table layout and the three probability types stay exactly the same.

After you can compute probabilities from sample spaces and tables, the next step is combining events. Here, it matters whether events can overlap and whether one event changes the probability of the other.

Unions and intersections of events

When combining events, two common questions come up:

  • Are you finding the probability that at least one of two events occurs (a union)?
  • Or are you finding the probability that both events occur (an intersection)?

The correct rule depends on whether the events can occur together and whether they affect each other.

  • Union, mutually exclusive: If two events cannot occur at the same time, there is no overlap. The probability that at least one occurs is the sum of their individual probabilities:

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

  • Union, non-mutually exclusive: If two events can occur together, adding P(A) and P(B) counts the overlap twice. Subtract P(A∩B) once to correct for that:

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

  • Intersection, independent: If two events are independent, the occurrence of one does not change the probability of the other. Multiply their probabilities to get the probability that both occur:

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

    For example, flipping two heads in a row with a fair coin: each flip is independent, so P(head then head)=21​×21​=41​.

Mutually exclusive ≠ independent. These two terms are easy to confuse, but they describe very different relationships. Mutually exclusive events cannot happen together - if A occurs, B is ruled out entirely. That means knowing A occurred tells you B did not occur, so the events are actually dependent. Independent events, by contrast, have no effect on each other at all. If A and B are both mutually exclusive and have nonzero probabilities, they cannot be independent.

Example: Mutually exclusive vs. non-mutually exclusive unions

You draw one card from a standard 52-card deck.

Case 1 - Mutually exclusive: Let A = “draw a heart” and B = “draw a spade.” A card cannot be both, so the events are mutually exclusive.

P(A)=5213​,P(B)=5213​

P(A∪B)=5213​+5213​=5226​=21​

Case 2 - Non-mutually exclusive: Let A = “draw a heart” and B = “draw a king.” The king of hearts is both, so the events can overlap.

  • P(A)=5213​
  • P(B)=524​
  • P(A∩B)=521​ (the king of hearts)

P(A∪B)=5213​+524​−521​=5216​=134​

The only difference between the two cases is whether you subtract the overlap. When events can share outcomes, count that overlap and remove it once.

Answer: Case 1: 21​; Case 2: 134​

With and without replacement

When you draw multiple items from a finite set, you need to consider whether the first draw changes the second. That depends on whether you put the item back.

  • With replacement means the item is returned before the next draw. The sample space stays the same, so the probabilities stay the same across draws.

  • Without replacement means the item is not returned. The sample space shrinks after each draw, so the probabilities change.

Common mistake: Draws without replacement are dependent events - the outcome of the first draw changes the probabilities for the second. Don’t apply the independent-events multiplication rule P(A∩B)=P(A)×P(B) here. Instead, multiply P(first draw) by the conditional probability P(second draw∣first draw).

Example: Without replacement

A box contains 3 red and 2 blue balls (5 total). You draw two balls without replacement. What is the probability both are red?

On the first draw, there are 3 red balls out of 5 total:

P(red1​)=53​.

After drawing a red ball and not replacing it, there are 2 red balls left out of 4 total:

P(red2​∣red1​)=42​=21​.

Because both events must occur, multiply the probabilities:

P(both red)=53​×21​=103​=0.3.

Answer: 0.3

Key points
  • Understand the sample space: list or visualize all possible outcomes before identifying events

  • Identify the events clearly before computing probabilities

  • Use one-way tables: category count divided by grand total

  • Use two-way tables: joint cell divided by grand total for joint probability; row or column sum divided by grand total for marginal probability

  • Distinguish between joint, marginal, and conditional probabilities:

    • Joint - both events occur
    • Marginal - overall or total proportions
    • Conditional - restricted to a given condition or category
  • Combine events: mutually exclusive add; non-mutually exclusive add and subtract overlap; independent multiply

  • Handle replacement: with replacement probabilities stay constant; without replacement adjust the denominator after each draw

  • Verify results: probabilities lie between 0 and 1 and unions/intersections make sense in context