Probability for UP Police Constable — Concepts, Shortcuts & PYQs

intermediate 18 min read

Concept

Probability is the mathematical measure of how likely an event is to occur. The scale runs from 0 (impossible) to 1 (certain). Everything in between is a fraction.

Here is the core formula — and it never changes:

P(Event)=Number of favourable outcomesTotal number of possible outcomesP(\text{Event}) = \frac{\text{Number of favourable outcomes}}{\text{Total number of possible outcomes}}

Think of it like this: you are standing at a chowk (intersection) with 10 roads. Three of those roads lead to Delhi. If you pick a road blindfolded, the probability of reaching Delhi is 3/10. The "favourable" roads are 3; the total roads are 10.

Key vocabulary you must lock in:

Boundaries of probability:

0P(E)10 \leq P(E) \leq 1

A probability answer greater than 1 or negative is always wrong — eliminate such options immediately in the exam hall.

The complement rule deserves its own line because UP Police PYQs use it repeatedly:

P(at least one)=1P(none)P(\text{at least one}) = 1 - P(\text{none})

This flips a hard counting problem into a simple subtraction. You will see this pattern in coins, cards, and committee questions. The moment you read "at least one," reach for the complement.

Standard sample spaces you should know cold:

| Experiment | Total Outcomes | |---|---| | 1 coin toss | 2 | | 2 coin tosses | 4 | | 3 coin tosses | 8 | | 1 die roll | 6 | | 2 dice rolls | 36 | | 1 card from 52-card deck | 52 |


Deep Dive

The Foundation: Counting Favourable Outcomes

The entire difficulty of probability questions lies in correctly counting favourable outcomes. The formula is simple; the counting is where mistakes happen. Work through every question in two steps: (1) find total outcomes, (2) find favourable outcomes. Never mix the two steps.

Type 1: Simple Basket / Bag Problems

These are the most common type in UP Police Constable. A bag has objects of different types — count everything first.

Total = sum of all object counts. Favourable = count of objects matching the condition.

Example structure: "Basket has 6 apples, 3 mangoes, 5 oranges. Find P(orange)."

Total = 14. Favourable (orange) = 5. P = 5/14.

For "neither A nor B" conditions: favourable = everything except A and B = total − count(A) − count(B).

Type 2: Coin Problems

For nn coin tosses, total outcomes = 2n2^n.

For "at least one head in nn tosses":

P(at least 1 head)=1P(no heads)=112nP(\text{at least 1 head}) = 1 - P(\text{no heads}) = 1 - \frac{1}{2^n}

For 2 tosses: 11/4=3/41 - 1/4 = 3/4. For 3 tosses: 11/8=7/81 - 1/8 = 7/8.

Type 3: Card Problems

A standard deck has 52 cards. Know this structure:

P(Ace) = 4/52 = 1/13. Memorise this directly — it appears in PYQs.

P(Face card) = 12/52 = 3/13.

P(Red card) = 26/52 = 1/2.

Type 4: Days, Months, Letters

These are pure counting questions dressed as probability.

Days of the week: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday = 7 days.

Days starting with 'S': Saturday, Sunday = 2. Days starting with 'W': Wednesday = 1. Total starting with 'S' or 'W' = 3. P = 3/7.

Months of the year = 12. Months starting with 'J': January, June, July = 3. P = 3/12 = 1/4.

Type 5: Complement Events

The formula P(E)=1P(E)P(E') = 1 - P(E) solves two types of questions directly:

Direct: "P(event) = 0.55. Find P(event does not happen)." → 10.55=0.451 - 0.55 = 0.45. Done in 3 seconds.

Indirect (at least one): "P(at least one woman in committee)" → Calculate P(no women), subtract from 1.

Type 6: Committee / Selection Problems (Combinatorics-based)

These use nCr=n!r!(nr)!^nC_r = \frac{n!}{r!(n-r)!}.

Structure:

  1. Total ways = total peopleCcommittee size^{\text{total people}}C_{\text{committee size}}
  2. For "at least one woman": unfavourable = all men selected = menCcommittee size^{\text{men}}C_{\text{committee size}}
  3. P=1unfavourabletotalP = 1 - \frac{\text{unfavourable}}{\text{total}}

Example: 5 men + 4 women, committee of 3.

Quick nCr^nC_r Values to Remember

| Expression | Value | |---|---| | 9C3^9C_3 | 84 | | 5C3^5C_3 | 10 | | 4C2^4C_2 | 6 | | 6C2^6C_2 | 15 | | 52C1^{52}C_1 | 52 |

Inclusion-Exclusion for Two Events

When two events A and B can both happen:

P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)

In counting form: favourable(A or B) = favourable(A) + favourable(B) − favourable(both A and B).

Use this for "perfect square OR multiple of 6" type questions. Never add without subtracting the overlap.


Memory Tricks & Shortcuts

patternComplement Flip for At-Least-One

Any time a question asks "at least one [X]", flip it: calculate P(zero X) and subtract from 1.

Example — 2 coins, at least one head:

  • Direct method: list {HH, HT, TH} = 3 outcomes. Count = 3, P = 3/4. Takes 30s.
  • Complement: P(no heads) = P(TT) = 1/4. So P(at least one head) = 1 − 1/4 = 3/4. Takes 8s.

For 3 coins, direct listing takes 60s+ (8 outcomes to scan). Complement takes 10s: P(no heads) = 1/8, answer = 7/8. Standard method: 60s, shortcut: 10s.

patternCard Fractions Cold-Memorised

Memorise these five card fractions — they cover 90% of card PYQs:

  • P(Ace) = 4/52 = 1/13
  • P(Face card) = 12/52 = 3/13
  • P(King) = 4/52 = 1/13
  • P(Red card) = 26/52 = 1/2
  • P(Heart) = 13/52 = 1/4

When you see a card question, match it to one of these before you start calculating. Standard calculation: 20s. Memory recall: 3s.

eliminationBasket Problem: Subtract the Excluded

For "neither A nor B" questions, do not add favourable counts — subtract the excluded ones from the total.

Basket: 6 apples, 3 mangoes, 5 oranges. P(neither apple nor mango)?

Wrong approach (common mistake): add apple + mango = 9 and put it as numerator. Correct approach: Total = 14. Excluded = 6 + 3 = 9. Favourable = 14 − 9 = 5. P = 5/14.

This saves you from inverting the fraction by accident. Step count: subtract once vs. risk of selecting wrong numerator. Saves 1 error-correction cycle ≈ 30s.

patternDays/Months Letter Filter

For "day starting with letter X" questions, run through the week in this fixed order: Mon, Tue, Wed, Thu, Fri, Sat, Sun. Mark matches, count them.

Days starting with 'S': Sat, Sun → 2. Days starting with 'W': Wed → 1. Combined = 3, P = 3/7.

Never rely on memory alone — write the 7 days and tick the matching ones. This takes 12s and eliminates miscounts. Standard guesswork approach with errors: 45s + correction.

eliminationDenominator Sanity Check

Before writing your final answer, check: is the denominator equal to the total sample space you stated? If not, you have made an arithmetic error somewhere.

For basket (total 14): denominator must be 14. For 2-coin toss (total 4): denominator must be 4. For 52-card deck: denominator must be 52 (or a simplified factor of 52).

This single check catches fraction inversion errors and wrong-total errors. It adds 5s and saves you from picking the wrong option. When options include both 5/14 and 9/14, this check tells you immediately which denominator is valid.


Fast-Solving Framework

Read the question. Identify the experiment type in 5 seconds.

Is it a basket/bag question? → Total = sum of all items. Favourable = items matching condition (or total minus excluded items for "neither" questions). Write fraction, simplify.

Is it a coin/die question? → Use 2n2^n for coins, 6n6^n for dice. If "at least one X", use complement: 1P(no X)1 - P(\text{no X}).

Is it a card question? → Match to one of five memorised fractions. If not a direct match, total = 52, count favourables.

Is it a days/months/letters question? → Write the full list (7 days or 12 months), tick the qualifying ones, count.

Is it a committee/selection question? → Use nCr^nC_r. If "at least one woman", compute 1P(all men)1 - P(\text{all men}).

Is it a direct complement question?P(Eˉ)=1P(E)P(\bar{E}) = 1 - P(E). One subtraction.

Sanity check every answer: Is 0P10 \leq P \leq 1? Is the denominator correct? Eliminate any option greater than 1 — it cannot be a probability.


Solved PYQs

Why this question: The simplest basket-type. Sets up the "favourable from total" framework cleanly.

Previous Year Questionपिछले वर्ष का प्रश्न2026
A basket has 6 apples, 3 mangoes and 5 oranges. One fruit is selected at random. What is the probability that it is neither an apple nor a mango?
एक टोकरी में 6 सेब, 3 आम और 5 संतरे हैं। इनमें से एक फल यादृच्छिक रूप से चुना जाता है। इसकी प्रायिकता क्या है कि वह फल न तो सेब है और न ही आम?
  1. 5/14
  2. 6/14
  3. 9/13
  4. 3/14
  1. 6/14
  2. 5/14
  3. 9/13
  4. 3/14
Solutionसमाधान
Total fruits = 6+3+5 = 14. Fruits that are neither apple nor mango = 5 (oranges). Probability = 5/14.

Solving path: Total fruits = 6 + 3 + 5 = 14. "Neither apple nor mango" = only oranges qualify. Oranges = 5. P = 5/14. Scan options — 5/14 is option A. Done in 15 seconds. The trap here is option B (6/14) which is P(apple), not P(orange). Do not pick the first even-sounding fraction.


Why this question: Introduces the complement method for "at least one" in a combinatorics setting. High-value question type — harder than it looks at first glance.

Previous Year Questionपिछले वर्ष का प्रश्न2026
A committee of 3 members is to be formed from 5 men and 4 women. What is the probability that the committee contains at least one woman?
5 पुरुषों और 4 महिलाओं में से 3 सदस्यों की एक समिति का गठन किया जाना है। इस समिति में कम-से-कम एक महिला होने की प्रायिकता क्या है?
  1. 84/37
  2. 37/42
  3. 74/42
  4. 37/84
  1. 84/37
  2. 37/84
  3. 37/42
  4. 74/42
Solutionसमाधान
Total ways = ⁹C₃ = 84. Ways with no women (all men) = ⁵C₃ = 10. P(at least one woman) = 1 - 10/84 = 74/84 = 37/42.

Solving path: Total ways to choose 3 from 9 people = 9C3=9×8×73×2×1=84^9C_3 = \frac{9 \times 8 \times 7}{3 \times 2 \times 1} = 84. Ways with zero women (all 3 from 5 men) = 5C3=5×4×36=10^5C_3 = \frac{5 \times 4 \times 3}{6} = 10. P(no women) = 10/84. P(at least one woman) = 110/84=74/84=37/421 - 10/84 = 74/84 = 37/42. Option B. Notice option A (84/37) is greater than 1 — eliminate immediately.


Why this question: The most classic probability question. Every aspirant should solve this in under 10 seconds using the complement.

Previous Year Questionपिछले वर्ष का प्रश्न2026
A coin is flipped two times. What is the probability of getting at least one head?
एक सिक्के को दो बार उछाला जाता है। कम से कम एक बार हेड आने की प्रायिकता क्या है?
  1. 2/3
  2. 3/4
  3. 1/2
  4. 3/2
  1. 3/2
  2. 1/2
  3. 2/3
  4. 3/4
Solutionसमाधान
Total outcomes = 4 (HH, HT, TH, TT). Outcomes with at least one head = 3 (HH, HT, TH). Probability = 3/4.

Solving path: 2 coin tosses → total outcomes = 4. Complement: P(no heads) = P(TT) = 1/4. P(at least one head) = 1 − 1/4 = 3/4. Option B. Option D (3/2) is greater than 1 — eliminate before reading other options.


Why this question: Tests your knowledge of the 7 days and letter-matching. Simple but students miscounting 'S' days drop marks here.

Previous Year Questionपिछले वर्ष का प्रश्न2026
A student randomly picks a day from the days of a week. What is the probability that the selected day starts with the letter 'W' or 'S'?
एक छात्र सप्ताह के दिनों में से एक दिन यादृच्छिक रूप से चुनता है। इसकी प्रायिकता क्या है कि चुना गया दिन 'W' या 'S' अक्षर से शुरू होता है?
  1. 3/7
  2. 4/7
  3. 1/7
  4. 2/7
  1. 4/7
  2. 2/7
  3. 3/7
  4. 1/7
Solutionसमाधान
Days starting with W: Wednesday (1). Days starting with S: Saturday, Sunday (2). Total = 3 out of 7. Probability = 3/7.

Solving path: Write the 7 days: Mon, Tue, Wed, Thu, Fri, Sat, Sun. Starting with 'W': Wednesday (1). Starting with 'S': Saturday, Sunday (2). Total qualifying = 3. P = 3/7. Option A. Common mistake: forgetting Sunday starts with 'S' and writing 2/7 (option D).


Why this question: The purest complement question. Tests whether you know P(Eˉ)=1P(E)P(\bar{E}) = 1 - P(E) directly.

Previous Year Questionपिछले वर्ष का प्रश्न2026
The probability of an event happening is 0.55. What is the probability that the event does not happen?
किसी घटना के घटित होने की प्रायिकता 0.55 है। उस घटना के घटित न होने की प्रायिकता क्या है?
  1. 0.30
  2. 0.55
  3. 0.50
  4. 0.45
  1. 0.50
  2. 0.45
  3. 0.30
  4. 0.55
Solutionसमाधान
P(not happening) = 1 - P(happening) = 1 - 0.55 = 0.45.

Solving path: P(event does not happen) = 1 − 0.55 = 0.45. Option D. No setup needed. If you spent more than 8 seconds on this, you are over-thinking it. The trap is option A (0.30), which has no mathematical basis — it is there to catch guessers.


Why this question: A foundational card question. Tests whether you know the deck structure.

Previous Year Questionपिछले वर्ष का प्रश्न2024
What is the probability of drawing an ace from a pack of 52 cards?
52 पत्तों की एक गड्डी से इक्का निकलने की प्रायिकता क्या है?
  1. 3/13
  2. 1/13
  3. 2/25
  4. 1/52
  1. 2/25
  2. 1/52
  3. 1/13
  4. 3/13
Solutionसमाधान
There are 4 aces in a pack of 52 cards, so probability = 4/52 = 1/13.

Solving path: 4 aces in 52 cards. P(Ace) = 4/52 = 1/13. Option B. This should take 5 seconds if you have memorised card fractions. Option D (1/52) is the probability of drawing one specific ace — a common confusion. Option A (3/13) is P(face card) misremembered.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →