Probability of Same Choice in Rock-Paper-Scissors
What You Will Learn
- How to identify and count all possible outcomes in a probability scenario
- Understanding the difference between favorable and total outcomes
- Working with independent events where one choice doesn't affect another
- Adding probabilities for mutually exclusive events
- Converting probability calculations into simplified fractions
Solution: Method 1 — Complete Enumeration
The most reliable approach is to list every possible combination and count how many result in a match.
Step 1 — Identify all possible outcomes
Each player can choose Rock (R), Paper (P), or Scissors (S). Since there are two players making independent choices, we have 3 × 3 = 9 total possible combinations.
| Player 1 | Player 2 | Same Choice? |
|---|---|---|
| Rock | Rock | ✓ Yes |
| Rock | Paper | ✗ No |
| Rock | Scissors | ✗ No |
| Paper | Rock | ✗ No |
| Paper | Paper | ✓ Yes |
| Paper | Scissors | ✗ No |
| Scissors | Rock | ✗ No |
| Scissors | Paper | ✗ No |
| Scissors | Scissors | ✓ Yes |
Step 2 — Count the favorable outcomes
Looking at the table, exactly 3 combinations result in both players making the same choice:
- (Rock, Rock)
- (Paper, Paper)
- (Scissors, Scissors)
Step 3 — Calculate the probability
Using the basic probability formula:
P(same choice) = 3/9 = 1/3
Solution: Method 2 — The Addition Principle
We can also solve this by recognizing that "same choice" means either both choose rock OR both choose paper OR both choose scissors.
Step 1 — Find the probability of each specific match
Since the players choose independently:
- P(both choose rock) = P(Player 1 chooses rock) × P(Player 2 chooses rock) =
1/3 × 1/3 = 1/9 - P(both choose paper) =
1/3 × 1/3 = 1/9 - P(both choose scissors) =
1/3 × 1/3 = 1/9
Step 2 — Add the probabilities
These three events are mutually exclusive (cannot happen simultaneously), so we add their probabilities:
P(same choice) = 1/9 + 1/9 + 1/9 = 3/9 = 1/3
Verification
Let's verify our answer using logical reasoning:
Check 1 — Does the probability make sense?
Our answer is 1/3 ≈ 0.333 or about 33.3%. This seems reasonable—not too high, not too low for a matching scenario with three equally likely choices.
Check 2 — Do all probabilities sum to 1?
The complement of "same choice" is "different choices." If P(same) = 1/3, then P(different) should be 2/3. From our table, 6 out of 9 outcomes result in different choices, giving P(different) = 6/9 = 2/3. ✓
Check 3 — Alternative reasoning
Once Player 1 makes any choice, Player 2 has a 1 in 3 chance of matching that choice, regardless of what Player 1 chose. This gives P = 1/3, confirming our answer. ✓
Common Pitfalls
Mistake 1: Forgetting that order doesn't matter in this context ✗
Some students think there are only 6 possible outcomes because they group (Rock, Paper) and (Paper, Rock) together. However, we're looking at two specific players, so the order of who chooses what does matter for counting purposes.
Mistake 2: Calculating 1/9 instead of 1/3 ✗
Students might calculate just the probability of one specific match (like both choosing rock) and stop there. Remember, we want the probability of ANY match, which requires adding all three possibilities.
Mistake 3: Using 1/2 because "either they match or they don't" ✗
This assumes matching and not matching are equally likely, but that's not true. With three choices available, not matching is actually twice as likely as matching.
The Pattern Behind This
This problem illustrates a beautiful general principle that extends well beyond rock-paper-scissors.
P(two players make same choice) = n/n² = 1/n
This works because:
- There are
n²total possible combinations - Exactly
nof those combinations are matches (one for each possible choice) - So P(match) =
n/n² = 1/n
This explains why adding more choices makes matching less likely: with 4 choices, P(match) = 1/4; with 5 choices, P(match) = 1/5, and so on.
Real Applications
This type of probability calculation appears in several practical contexts:
- Cryptography: The probability that two random keys generate the same hash value affects security protocols.
- Survey research: When studying whether people independently choose the same response option from a list.
- Quality control: Calculating the probability that two randomly selected items have the same defect type.
What If?
With three players each having 3 choices: 3 × 3 × 3 = 27 total possible combinations.
For all three to match, they must all choose the same option:
- (Rock, Rock, Rock)
- (Paper, Paper, Paper)
- (Scissors, Scissors, Scissors)
This gives us 3 favorable outcomes.
P(all same) = 3/27 = 1/9
Using our formula: with n=3 choices and 3 players, P = 3/3³ = 3/27 = 1/9 ✓
Answer: 1/9
The events "same choice" and "different choices" are complementary, so their probabilities must sum to 1.
P(different) = 1 - P(same) = 1 - 1/3 = 2/3
From our original table, 6 out of 9 outcomes resulted in different choices: P(different) = 6/9 = 2/3 ✓
P(same) + P(different) = 1/3 + 2/3 = 1 ✓
Notice that different choices are exactly twice as likely as matching choices.
Answer: 2/3
With n=5 equally likely choices, we can use our formula: P(match) = 1/n = 1/5
Total outcomes: 5 × 5 = 25
Favorable outcomes (matches): 5 (one for each sign)
P(match) = 5/25 = 1/5
Original game: P(match) = 1/3 ≈ 0.333
Extended game: P(match) = 1/5 = 0.2
Adding more choices makes matching less likely, as expected.
Answer: 1/5
You played Paper, and you know there was NO match. So your opponent played either Rock or Scissors (not Paper).
Given no match when you played Paper, opponent's possibilities:
- Rock
- Scissors
These are equally likely since the opponent chooses randomly.
P(opponent played Scissors | no match) = 1/2
P(Scissors | no match) = P(Scissors and no match) / P(no match)
= (1/3) / (2/3) = 1/2 ✓
Answer: 1/2
Frequently Asked Questions
2026-08-15