Flipping Coins Puzzle
You are in a room blind folded. There are 10 coins kept in front of you where 5 are kept heads up and 5 are kept heads down. It is not possible to determine which side is up by touching them.
Task:
The task is to separate these coins into two piles of 5 such that both the piles have an equal number of heads up.
You are allowed to flip the coins any number of times.
Solution: Step 1: Take the coins and arrange them into two piles with 5 coins each.
Step 2: Fixing one pile, flip all the coins in the other pile.
Step 2: Fixing one pile, flip all the coins in the other pile.
Explanation: The number of heads in both the piles will become equal. It happens because the coins have only two probabilities, they can either have heads or a tail.Let us understand in detail.
We know that are the 10 coins: H H H H H T T T T T
Now, let us consider the following cases: -
Case 1:
Let us consider the coins are divided in two piles in the following order
P1: H T T T T and P2: T H H H H
Flip P1. It becomes: T H H H H
Therefore, both the piles will have equal number of heads.
Case 2:
Let us consider the coins are divided in the following order
P1: T H T H H and P2: H T H T T
Flip P1. It becomes: H T H T T
Therefore, both the piles will have an equal number of heads.
Case 3:
Let us consider the coins are divided in the following order
P1: H T H H H and P2: T T T T H
Flip P2. It becomes: H H H H T
Therefore, both the piles will have equal number of heads.
What is happening here is that we are fixing the number of heads in one pile whereas in the other pile we are flipping them.
The logic here is that the number of heads up and heads down coins is fixed in the beginning.
When we are dividing them into two piles, if one pile gets “x” heads up then the other pile will have “x” tails up and then we flip the other pile. It becomes “x” heads and the heads become tails.
Answer: Take the coins and arrange them into two piles with 5 coins each. Fixing one pile, flip all the coins in the other pile.