English translation
Define counts
Probability first addresses a fundamental question: Among all possible outcomes, how likely is a particular event to occur? To make sense of probability formulas, we must first clearly define the sample space and the event—only then does the mathematics have solid grounding.
I begin by explicitly listing the sample space, then clearly identifying (or “circling”) the event of interest. Without a well-defined denominator—the total number of equally likely outcomes—probability calculations are unreliable.
Before diving into probability theory, we must first clarify what “probability” means. Probability quantifies the likelihood that a given event will occur; it is mathematics’ formal language for describing uncertainty. Next, we’ll explore its foundational definition and real-world relevance.
The Basic Definition of Probability
The definition of probability rests on several key components:
Probability isn’t just for exam problems. Linking samples, events, distributions, and evidence updating makes many modeling tasks—such as prediction, confidence estimation, and performance evaluation—far more interpretable.
-
Sample Space (S)
- The sample space is the set of all possible outcomes of a random experiment. It is conventionally denoted by .
- Example: When rolling a fair six-sided die, the sample space is .
-
Event (E)
- An event is any subset of the sample space—i.e., a collection of one or more outcomes from .
- Example: The event “rolling an even number” corresponds to .
-
Mathematical Definition of Probability
- For a simple (equally likely) event , its probability is the ratio of the number of favorable outcomes to the total number of possible outcomes:
- Here, denotes the cardinality (size) of event , and denotes the size of the sample space.
Range of Probability Values
Probability values always lie in the closed interval :
- means event is impossible.
- means event is certain.
You don’t need to absorb every detail of “The Definition of Probability” all at once. Start with a small, hands-on problem you can verify yourself—then use the diagrams and text to fill in conceptual gaps.
Example:
- What is the probability of drawing a red card from a standard 52-card deck?
- Event : drawing a red card → (13 hearts + 13 diamonds).
- Sample space : all 52 cards → .
- So , i.e., a 50% chance.
Key Properties of Probability
After grasping the basic definition, it’s essential to understand these core properties:
-
Complementary Events
- The complement of event , denoted , consists of all outcomes not in .
- Their probabilities satisfy: .
-
Independent Events
- Events and are independent if the occurrence of does not affect the probability of (and vice versa). Then:
-
Mutually Exclusive Events
- Events and are mutually exclusive if they cannot both occur: .
- Their union satisfies:
Practical Example
Let’s reinforce the definition with a concrete scenario:
Suppose a bag contains 3 red balls and 2 blue balls. One ball is drawn uniformly at random. Define:
- Sample space: → .
- Event : drawing a red ball → → .
Applying the definition:
So the probability of drawing a red ball is 60%.
Computing Probability with Python
Here’s a simple Python snippet to compute the probability of drawing a red ball:
# Define counts
red_balls = 3
blue_balls = 2
# Compute total balls and red-ball probability
total_balls = red_balls + blue_balls
red_probability = red_balls / total_balls
print(f"Probability of drawing a red ball: {red_probability:.2f}")
Running this yields:
Probability of drawing a red ball: 0.60
When reviewing “The Definition of Probability,” place key concepts, procedural steps, and observable results side-by-side on a single page for efficient recall.
When practicing “The Definition of Probability,” write the input conditions, the computational action, and the resulting output together—this makes future review faster and more effective.
Summary
In this article, we introduced the foundational definition of probability, its core properties, and practical applications. A firm grasp of these basics—especially the notions of sample space and event—is indispensable. They form the bedrock upon which all further probability theory is built.
In the next article, we’ll delve deeper into the relationship between events and sample spaces, strengthening your understanding of probability’s structural framework. We hope this material helps you apply probabilistic thinking to real problems—and lays a robust foundation for what lies ahead.
Continue