Statistics: A Sock Problem

randerson112358
3 min readMay 19, 2018

Problem: Given 6 pairs of socks (a.k.a a total of 12 socks) , where 3 pairs are blue and 3 pairs are black (a.k.a total number of blue socks is 6 and total number of black socks is 6). What is the probability of picking a matching pair ?

Answer: 5/11

Let’s first understand the question: What is the probability of picking a matching pair ? This is just asking us the number of ways to pick any two socks that are the same color.

Initially we are given 6 pairs of socks for a total of 12 socks. 3 pairs are black and 3 pairs are blue, meaning 6 socks are black and the other 6 are blue. We choose the first sock, it doesn’t matter what color the sock is that we choose as long as the second sock is the same color as the first.

6 Black Socks & 6 Blue Socks

WARNING MATH AHEAD !!

Ways to pick any 2 socks from 12 socks = 12 choose 2 or 12C2.
Ways to pick 2 BLACK socks from 6 BLACK socks = 6 choose 2 or 6C2
Ways to pick 2 BLUE socks from 6 BLUE socks = 6 choose 2 or 6C2

Using the Combination Formula:

n! / k!(n-k)!

--

--

No responses yet