Basic Probability Formulas: Complete Guide with Examples

Reading Time: 10 mins

Are you struggling to understand and apply probability concepts in your mathematics coursework? Many students find probability formulas confusing and difficult to implement correctly, leading to errors in calculations and lost marks on exams. Without a solid grasp of these essential formulas, you’ll continue to struggle with more advanced statistical concepts and real-world applications. This comprehensive guide breaks down all the basic probability formulas with clear explanations and practical examples, helping you build confidence and proficiency in solving probability problems.

Table of Contents

Understanding Probability Fundamentals

Before diving into specific basic probability formulas, it’s important to understand the core concepts that form the foundation of probability theory:

What is Probability?

Probability measures the likelihood of an event occurring. It’s expressed as a number between 0 and 1, where:

  • 0 indicates impossibility (the event will never occur)
  • 1 indicates certainty (the event will definitely occur)
  • Values between 0 and 1 represent varying degrees of likelihood

Key Terminology

To effectively use basic probability formulas, you need to understand these fundamental terms:

  • Experiment: A process that generates well-defined outcomes
  • Sample Space (S): The set of all possible outcomes of an experiment
  • Event (E): A subset of the sample space, or a specific collection of outcomes
  • Outcome: A single result of an experiment
  • Mutually Exclusive Events: Events that cannot occur simultaneously
  • Independent Events: Events where the occurrence of one does not affect the probability of the other
  • Dependent Events: Events where the occurrence of one affects the probability of the other

Essential Probability Formulas

The Basic Probability Formula

The most fundamental of all basic probability formulas is:

P(E) = Number of favorable outcomes / Total number of possible outcomes

Or more formally:

P(E) = n(E) / n(S)

Where:

  • P(E) represents the probability of event E
  • n(E) represents the number of favorable outcomes
  • n(S) represents the total number of possible outcomes in the sample space

Example: When rolling a standard six-sided die, what is the probability of rolling an even number?

Solution:

  • Favorable outcomes: {2, 4, 6} = 3 outcomes
  • Total possible outcomes: {1, 2, 3, 4, 5, 6} = 6 outcomes
  • P(even number) = 3/6 = 1/2 = 0.5 or 50%

Addition Rules of Probability

The addition rules are crucial basic probability formulas used when calculating the probability of either of two events occurring.

Addition Rule for Mutually Exclusive Events

If events A and B cannot occur simultaneously (mutually exclusive):

P(A or B) = P(A) + P(B)

Example: When drawing a single card from a standard deck, what is the probability of drawing either a King or a Queen?

Solution:

  • P(King) = 4/52 = 1/13
  • P(Queen) = 4/52 = 1/13
  • Since these events are mutually exclusive (a card cannot be both a King and a Queen):
  • P(King or Queen) = 1/13 + 1/13 = 2/13 ≈ 0.154 or 15.4%

Addition Rule for Non-Mutually Exclusive Events

If events A and B can occur simultaneously (not mutually exclusive):

P(A or B) = P(A) + P(B) – P(A and B)

Example: When drawing a single card from a standard deck, what is the probability of drawing either a Heart or a Face card?

Solution:

  • P(Heart) = 13/52 = 1/4
  • P(Face card) = 12/52 = 3/13
  • P(Heart and Face card) = 3/52 (the 3 face cards that are hearts)
  • P(Heart or Face card) = 1/4 + 3/13 – 3/52 = 13/52 + 12/52 – 3/52 = 22/52 ≈ 0.423 or 42.3%

Multiplication Rules of Probability

These basic probability formulas are used to find the probability of multiple events occurring together.

Multiplication Rule for Independent Events

If events A and B are independent:

P(A and B) = P(A) × P(B)

Example: What is the probability of tossing a coin twice and getting heads both times?

Solution:

  • P(First toss is heads) = 1/2
  • P(Second toss is heads) = 1/2
  • Since the tosses are independent:
  • P(Both tosses are heads) = 1/2 × 1/2 = 1/4 = 0.25 or 25%

Multiplication Rule for Dependent Events

If events A and B are dependent:

P(A and B) = P(A) × P(B|A)

Where P(B|A) is the conditional probability of B given A has occurred.

Example: When drawing two cards from a standard deck without replacement, what is the probability of drawing two Aces?

Solution:

  • P(First card is Ace) = 4/52
  • P(Second card is Ace | First card is Ace) = 3/51 (since one Ace has been removed)
  • P(Two Aces) = 4/52 × 3/51 = 12/2652 = 1/221 ≈ 0.0045 or 0.45%

Conditional Probability Formula

Conditional probability is one of the most important basic probability formulas, measuring the probability of an event given that another event has already occurred:

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

Example: In a standard deck of cards, what is the probability that a randomly selected card is a King, given that it is a face card?

Solution:

  • P(King | Face card) = P(King and Face card) / P(Face card)
  • P(King and Face card) = 4/52 (all Kings are face cards)
  • P(Face card) = 12/52 = 3/13
  • P(King | Face card) = (4/52) / (12/52) = 4/12 = 1/3 ≈ 0.333 or 33.3%

Bayes’ Theorem

Bayes’ Theorem is an advanced application of basic probability formulas that allows us to update probability estimates based on new evidence:

P(A|B) = [P(B|A) × P(A)] / P(B)

Example: A medical test for a disease is 95% accurate for positive results (if you have the disease, it shows positive 95% of the time) and 90% accurate for negative results (if you don’t have the disease, it shows negative 90% of the time). If 2% of the population has the disease, what is the probability that a person with a positive test result actually has the disease?

Solution:

  • Let D = having the disease, and T = positive test result
  • We want to find P(D|T)
  • P(T|D) = 0.95 (test accuracy for those with disease)
  • P(D) = 0.02 (prevalence in population)
  • P(T|not D) = 0.10 (false positive rate)
  • P(not D) = 0.98 (percentage without disease)
  • P(T) = P(T|D) × P(D) + P(T|not D) × P(not D) = 0.95 × 0.02 + 0.10 × 0.98 = 0.019 + 0.098 = 0.117
  • P(D|T) = [P(T|D) × P(D)] / P(T) = (0.95 × 0.02) / 0.117 ≈ 0.162 or 16.2%

This surprisingly low result demonstrates why understanding basic probability formulas is critical in fields like medicine.

Binomial Probability Formula

The binomial probability formula is used when we have a fixed number of independent trials, each with the same probability of success:

P(X = k) = (n choose k) × p^k × (1-p)^(n-k)

Where:

  • P(X = k) is the probability of exactly k successes
  • n is the number of trials
  • p is the probability of success on a single trial
  • (n choose k) = n! / [k! × (n-k)!]

Example: If the probability of making a basketball free throw is 0.7, what is the probability of making exactly 8 out of 10 free throws?

Solution:

  • n = 10 (number of trials)
  • k = 8 (number of successes)
  • p = 0.7 (probability of success on each trial)
  • (10 choose 8) = 10! / [8! × (10-8)!] = 10! / [8! × 2!] = 45
  • P(X = 8) = 45 × 0.7^8 × 0.3^2 = 45 × 0.0576 × 0.09 ≈ 0.2333 or 23.33%

Step-by-Step Examples

Let’s work through some comprehensive examples applying these basic probability formulas:

Example 1: Combining Multiple Probability Rules

A bag contains 5 red marbles, 3 blue marbles, and 2 green marbles. If two marbles are drawn without replacement, what is the probability of drawing a red marble followed by a blue marble?

Step 1: Identify the type of problem. This is a dependent events problem requiring the multiplication rule for dependent events.

Step 2: Calculate the probability of the first event. P(first marble is red) = 5/10 = 1/2

Step 3: Calculate the conditional probability of the second event. P(second marble is blue | first marble is red) = 3/9 = 1/3 (Since one red marble has been removed, there are now 9 marbles left, of which 3 are blue)

Step 4: Apply the multiplication rule for dependent events. P(red then blue) = P(first marble is red) × P(second marble is blue | first marble is red) P(red then blue) = 1/2 × 1/3 = 1/6 ≈ 0.167 or 16.7%

Example 2: Using Bayes’ Theorem

A factory has three machines (A, B, and C) producing light bulbs. Machine A produces 20% of the bulbs, Machine B produces 30%, and Machine C produces 50%. The defect rates are 5% for Machine A, 3% for Machine B, and 2% for Machine C. If a randomly selected bulb is defective, what is the probability it was produced by Machine A?

Step 1: Define the events.

  • Let M_A, M_B, and M_C represent the events that the bulb was produced by Machine A, B, or C respectively.
  • Let D represent the event that the bulb is defective.

Step 2: Identify the known probabilities.

  • P(M_A) = 0.20, P(M_B) = 0.30, P(M_C) = 0.50
  • P(D|M_A) = 0.05, P(D|M_B) = 0.03, P(D|M_C) = 0.02

Step 3: Calculate the total probability of a defective bulb. P(D) = P(D|M_A) × P(M_A) + P(D|M_B) × P(M_B) + P(D|M_C) × P(M_C) P(D) = 0.05 × 0.20 + 0.03 × 0.30 + 0.02 × 0.50 P(D) = 0.01 + 0.009 + 0.01 = 0.029 or 2.9%

Step 4: Apply Bayes’ Theorem. P(M_A|D) = [P(D|M_A) × P(M_A)] / P(D) P(M_A|D) = (0.05 × 0.20) / 0.029 = 0.01 / 0.029 ≈ 0.345 or 34.5%

Common Probability Distributions

While not strictly basic probability formulas, understanding common probability distributions is essential for advanced probability applications:

Binomial Distribution

The binomial distribution models the number of successes in a fixed number of independent trials with the same probability of success.

Formula: P(X = k) = (n choose k) × p^k × (1-p)^(n-k)

Example Application: Number of heads in 10 coin flips

Poisson Distribution

The Poisson distribution models the number of events occurring in a fixed interval of time or space when these events happen with a known constant mean rate.

Formula: P(X = k) = (e^(-λ) × λ^k) / k!

Where λ is the average number of events in the interval.

Example Application: Number of customers arriving at a store in one hour

Normal Distribution

The normal (or Gaussian) distribution is a continuous probability distribution that is symmetric around its mean.

Formula: f(x) = (1 / (σ√(2π))) × e^(-(x-μ)^2 / (2σ^2))

Where μ is the mean and σ is the standard deviation.

Example Application: Heights of adult males in a population

Real-World Applications

Basic probability formulas have numerous practical applications:

Finance and Insurance

  • Risk assessment for investments
  • Setting insurance premiums based on probability of claims
  • Modeling stock market behavior
  • Credit scoring and loan approval processes

Medicine and Healthcare

  • Diagnostic testing accuracy
  • Treatment success rate predictions
  • Epidemiological models for disease spread
  • Drug trial result analysis

Quality Control

  • Sampling methods to ensure product quality
  • Defect rate prediction and management
  • Process capability analysis
  • Reliability engineering

Data Science and Machine Learning

  • Predictive modeling
  • Classification algorithms
  • Bayesian networks
  • Recommendation systems

For more on how these concepts apply to data analysis, check our NIOS mathematics guide.

Common Mistakes to Avoid

When working with basic probability formulas, be careful to avoid these common errors:

Confusing Independent and Dependent Events

One of the most common mistakes is using the wrong multiplication rule. Always determine whether events are independent or dependent before selecting a formula.

Incorrectly Identifying Mutually Exclusive Events

Events can be non-mutually exclusive even when it’s not immediately obvious. Always check whether two events can happen simultaneously.

Miscounting the Sample Space

Ensure that you’ve correctly counted all possible outcomes in the sample space, especially in complex scenarios.

Neglecting to Convert to the Same Units

When combining probabilities, ensure all values are expressed in the same format (decimals, fractions, or percentages).

Misinterpreting Conditional Probability

Remember that P(A|B) and P(B|A) are generally not equal. Be careful to set up conditional probability problems correctly.

Overlooking Replacement vs. Non-Replacement

In sampling problems, always clarify whether sampling is done with or without replacement, as this significantly affects the probabilities.

Practice Problems with Solutions

Practice applying basic probability formulas with these example problems:

Problem 1:

A jar contains 4 red balls and 6 blue balls. If two balls are drawn without replacement, what is the probability that both balls are red?

Solution:

  • P(First ball is red) = 4/10 = 2/5
  • P(Second ball is red | First ball is red) = 3/9 = 1/3
  • P(Both balls are red) = 2/5 × 1/3 = 2/15 ≈ 0.133 or 13.3%

Problem 2:

In a survey, 65% of respondents like product A, 45% like product B, and 25% like both products. What is the probability that a randomly selected respondent likes either product A or product B?

Solution:

  • P(A) = 0.65
  • P(B) = 0.45
  • P(A and B) = 0.25
  • P(A or B) = P(A) + P(B) – P(A and B) = 0.65 + 0.45 – 0.25 = 0.85 or 85%

Problem 3:

If 3% of light bulbs manufactured by a company are defective, what is the probability that in a random sample of 5 bulbs, exactly 2 are defective?

Solution: Using the binomial probability formula:

  • n = 5 (sample size)
  • k = 2 (number of defective bulbs)
  • p = 0.03 (probability of a defective bulb)
  • (5 choose 2) = 10
  • P(X = 2) = 10 × 0.03^2 × 0.97^3 = 10 × 0.0009 × 0.912673 ≈ 0.0082 or 0.82%

For more practice problems, see our NIOS previous question papers.

FAQs About Probability Formulas

Can probability ever be greater than 1 or less than 0? No, probability values must always be between 0 and 1, inclusive. A probability of 0 means the event is impossible, and a probability of 1 means the event is certain.

What’s the difference between theoretical and empirical probability? Theoretical probability is calculated mathematically based on the possible outcomes, while empirical probability is based on observed data from experiments or past events.

How do I determine if events are independent? Events are independent if the occurrence of one does not affect the probability of the other. Mathematically, if P(A|B) = P(A), then A and B are independent.

What’s the relationship between probability and odds? If the probability of an event is p, then:

  • The odds in favor of the event are p : (1-p)
  • The odds against the event are (1-p) : p

How does replacement affect probability calculations? In sampling with replacement, the probabilities remain constant for each draw. In sampling without replacement, the probabilities change after each draw because the sample space changes.

What is the complementary rule of probability? The complementary rule states that P(not A) = 1 – P(A). It’s often easier to calculate the probability of an event not happening and then subtract from 1.

How are probability and statistics related? Probability deals with predicting the likelihood of future events, while statistics involves analyzing past data. However, statistical methods often rely on probability models, and probability theory forms the foundation of statistical inference.

Conclusion: Mastering Basic Probability

Understanding basic probability formulas is essential for success in mathematics, statistics, and many real-world applications. By mastering these fundamental concepts and practicing their application, you’ll develop strong problem-solving skills and a deeper understanding of uncertainty and randomness in various contexts.

Remember that probability is not just a mathematical concept but a powerful tool for making decisions under uncertainty. The more comfortable you become with these formulas, the better equipped you’ll be to analyze risks, make predictions, and draw conclusions from data.

For additional support with probability or other mathematics topics, explore our NIOS support resources or contact our academic advisors for personalized guidance.


This article aims to provide clear, actionable guidance on basic probability formulas. For more mathematics resources and study materials, visit the NIOS Mathematics section on our website.

Upskill Your Career

Take charge of your future with NIOS.World. Our flexible programs fit your life, offering recognized certifications and personalized learning options.

Start your journey today and achieve your goals with NIOS.World!

Namitha Bandopadya

Namitha Bandopadhyay is a dedicated education advocate and contributor at NIOS.World, committed to assisting students in effectively navigating the National Institute of Open Schooling (NIOS) system. With extensive knowledge in open schooling, distance education, and exam preparation strategies, Namitha offers valuable insights to learners pursuing flexible and accessible educational paths. Her articles aim to demystify complex academic processes, provide practical advice, and empower students to confidently achieve their educational objectives.

Related News & Articles

Contact NIOS World

Have any questions about our process? We’re here to help.

At NIOS World, we pride ourselves on delivering exceptional service every step of the way. Reach out to us today, and let’s discuss how we can bring your vision to life.

We prioritize open communication and adaptability, tailoring our approach to the unique demands of every project. Let us help you navigate complexities and transform your ideas into measurable outcomes.

Click Here to connect with our team and learn more about how NIOS World can support you.
SEO Contact Us Form