Probability Formulas with Examples for Aptitude Problems
Probability formulas for placement aptitude tests, with worked examples on addition rule, multiplication rule, conditional probability, and replacement draws.
Probability questions appear in the quantitative aptitude section of every major campus placement test. Four formula patterns cover the bulk of exam scenarios: basic probability, the addition rule, the multiplication rule, and conditional probability.
This article covers each formula, shows a step-by-step worked example, and then spells out the three calculation errors that cost students marks most often. One note: two common legacy resources swap the labels on the addition and multiplication theorems (the paper-clip and card examples are assigned to opposite sections). Those labeling errors are corrected here.
What is Probability
Probability measures the likelihood that a specific event occurs. It always falls between 0 (the event is impossible) and 1 (the event is certain).
A few definitions matter for solving aptitude problems cleanly:
- Sample space (S): the complete set of all possible outcomes.
- Coin toss:
S = {H, T}, so|S| = 2 - Single die:
S = {1, 2, 3, 4, 5, 6}, so|S| = 6 - Two dice: |S| = 36 equally likely ordered pairs
- Coin toss:
- Event (E): a subset of the sample space (one or more outcomes you are counting).
- Complement (E’): all outcomes in S that are not in E. If
P(E) = 0.4, thenP(E') = 0.6. - Mutually exclusive events: cannot occur at the same time. Rolling a 2 and rolling a 5 on the same throw are mutually exclusive.
- Independent events: the outcome of one does not change the probability of the other. Drawing a card and separately flipping a coin are independent.
Khan Academy’s probability library covers each of these concepts with interactive practice problems if you want to build intuition before drilling aptitude questions.
Core Probability Formulas
| Formula name | Formula | When to use |
|---|---|---|
| Basic probability | P(E) = n(E) / n(S) | Equally likely outcomes |
| Complement | P(E') = 1 − P(E) | ”At least one” or “none” problems |
| Addition (general) | P(A ∪ B) = P(A) + P(B) − P(A ∩ B) | Any two events |
| Addition (mutually exclusive only) | P(A ∪ B) = P(A) + P(B) | Only when A and B cannot occur together |
| Multiplication (independent events) | P(A ∩ B) = P(A) × P(B) | Draws with replacement, or unrelated events |
| Multiplication (dependent events) | P(A ∩ B) = P(A) × P(B|A) | Draws without replacement |
| Conditional | P(A|B) = P(A ∩ B) / P(B) | Probability of A given B has already occurred |
The addition and multiplication rows are the most commonly confused. The trigger word in a problem is usually “or” (addition rule) versus “and” (multiplication rule). The word “given” or a phrasing like “if the first card is…” signals conditional probability.
For a broader reference on these formulas in aptitude context, GeeksforGeeks covers probability with a similar formula set and additional example problems.
Worked Examples
Queen or Heart from a Standard Deck
This is an addition-rule problem. The two events overlap because the queen of hearts belongs to both sets, so the intersection must be subtracted.
- Total outcomes: 52 cards
- n(queen) = 4
- n(heart) = 13
- n(queen AND heart) = 1 (only the queen of hearts)
- Answer:
P(queen OR heart) = 4/52 + 13/52 − 1/52 = 16/52 = 4/13
If you skip the subtraction and add 4/52 + 13/52 directly, you get 17/52, which overcounts the queen of hearts.
Paper Clips: With-Replacement vs Without-Replacement
A box holds 3 red, 4 green, and 5 blue paper clips (12 total). One clip is drawn, noted, and put back. A second draw follows. What is P(red first, then blue)?
- P(red on first draw) = 3/12
- P(blue on second draw, with replacement) = 5/12, because the first clip was returned and the total is still 12
- Answer (with replacement):
P(red then blue) = 3/12 × 5/12 = 15/144 = 5/48
Now change the problem to without replacement: the first clip is not returned.
- P(red on first draw) = 3/12
- P(blue on second draw, without replacement) = 5/11, because only 11 clips remain
- Answer (without replacement):
P(red then blue) = 3/12 × 5/11 = 15/132 = 5/44
The two answers differ. Always confirm whether replacement occurs before setting up the multiplication.
Sum of Two Dice Equals 8
Two standard dice are rolled. What is the probability the sum equals 8?
- Total outcomes: 6 × 6 = 36 equally likely ordered pairs
- Favourable pairs that sum to 8: (2,6), (3,5), (4,4), (5,3), (6,2) (5 pairs)
- Answer:
P(sum = 8) = 5/36
A systematic enumeration of the sample space prevents missed pairs. Listing them out takes under a minute and avoids the common error of forgetting (2,6) and (6,2) are distinct outcomes.
Conditional Probability: Day and Attendance
The probability that it is Tuesday and a student is absent is 0.03. The probability that it is Tuesday is 0.2. What is the probability that the student is absent, given that today is Tuesday?
- Given:
P(Tuesday ∩ absent) = 0.03andP(Tuesday) = 0.2 - Apply conditional formula:
P(absent | Tuesday) = P(Tuesday ∩ absent) / P(Tuesday) - Answer:
P(absent | Tuesday) = 0.03 / 0.2 = 0.15
The conditional formula isolates “what we already know” (Tuesday) and re-scales the probability accordingly. This is the same logical structure that appears in Bayesian reasoning problems at analytics firms.
Common Errors in Aptitude Tests
Forgetting the Intersection Term
The general addition rule is P(A ∪ B) = P(A) + P(B) − P(A ∩ B). The shortcut P(A) + P(B) only holds when A and B are mutually exclusive. Most card, ball, and dice problems involve events that can co-occur, so the intersection subtraction is almost always required.
Test: draw a quick Venn diagram. If the two circles overlap, subtract the intersection.
Mixing Up Replacement Types
With replacement: the denominator stays constant across draws. Draws are independent. Use P(A) × P(B).
Without replacement: after each draw, the total decreases by one and the composition changes. Draws are dependent. Use P(A) × P(B given A).
The word “replaced” or “returned” in the problem statement is the signal. If the problem says “one after another” without mentioning replacement, assume without replacement for balls-in-a-bag problems unless stated otherwise.
Counting Arrangements vs Selections
Some probability problems count favourable outcomes by asking: in how many ways can this happen? If order matters (e.g., arranging people in seats), use permutations. If order does not matter (e.g., selecting a committee), use combinations. Applying the wrong counting method gives a wrong numerator even when the probability formula is correctly set up.
Probability in Placement Tests
Probability features in the quantitative aptitude section of most mass-recruiter tests. The weight it gets varies: standard service-tier tests tend to weight it less heavily, while analytics-oriented tests often include more conditional and combinatorial probability questions.
For an overview of how placement aptitude rounds are structured overall, the campus placement evaluation test guide covers what each section tests and roughly how marks are distributed.
The Mu Sigma MuAPT test is a good benchmark for probability question difficulty. Mu Sigma recruits for analytics roles and weights data-reasoning questions heavily, including probability.
Time-and-work aptitude questions follow the same formula-then-compute pattern and appear alongside probability in most placement rounds.
The complement shortcut (1 − P(nothing occurs)) from the “at least one” section above mirrors the logic behind Bayesian inference in language models. That connection is direct. TinkerLLM covers how this probability fluency maps to real AI system behavior, with practicals at ₹299.
Primary sources
Frequently asked questions
What is the basic probability formula for aptitude tests?
P(E) = n(E) / n(S), where n(E) is the number of favourable outcomes and n(S) is the total outcomes in the sample space.
When should I subtract the intersection in the addition rule?
Always subtract P(A ∩ B) in the addition rule unless the problem confirms A and B are mutually exclusive. Forgetting this subtraction is the most common error in compound probability questions.
What is the difference between with-replacement and without-replacement draws?
With replacement, the total outcomes stay constant each draw, so draws are independent. Without replacement, the total shrinks after each pick, making draws dependent and the denominator smaller.
How does conditional probability work in aptitude questions?
P(A | B) = P(A ∩ B) / P(B). It asks: given that event B has already occurred, what is the probability of A? This pattern appears frequently in reasoning and analytics recruitment tests.
How do I solve 'at least one' probability problems quickly?
Use the complement rule: P(at least one success) = 1 − P(no success at all). For example, P(at least one head in 3 tosses) = 1 − (1/2) to the power of 3 = 7/8.
A self-paced playground for building with LLMs.
TinkerLLM is FACE Prep's sister property. A guided environment for shipping real LLM applications, the kind of project that earns a paragraph on your resume, not a line.
Try TinkerLLM (₹299 launch)