This solution calculates the probability of obtaining at least one head when tossing three coins simultaneously.
Each coin toss has two possible outcomes: Heads (H) or Tails (T). When tossing three coins, the total number of possible outcomes is calculated as:
Total Outcomes = $2^n$, where $n$ is the number of coins.
In this case, $n=3$, so the total number of outcomes is $2^3 = 8$. These outcomes are: HHH, HHT, HTH, THH, HTT, THT, TTH, TTT.
It's often easier to calculate the probability of the event *not* happening and subtract it from 1. The complement of getting "at least one head" is getting "no heads" at all.
The only outcome with no heads is getting all tails (TTT).
The probability of getting tails on a single fair coin toss is $\frac{1}{2}$. Since the tosses are independent, the probability of getting three tails (TTT) is:
$P(\text{No Heads}) = P(\text{TTT}) = P(T) \times P(T) \times P(T) = \frac{1}{2} \times \frac{1}{2} \times \frac{1}{2} = \frac{1}{8}$
The probability of the event we are interested in (at least one head) is 1 minus the probability of its complement (no heads):
$P(\text{At least one head}) = 1 - P(\text{No Heads})$
$P(\text{At least one head}) = 1 - \frac{1}{8} = \frac{8}{8} - \frac{1}{8} = \frac{7}{8}$
The probability of getting at least one head when tossing three coins is $\frac{7}{8}$.
Three dice are thrown. What is the probability of getting a sum which is a perfect square?
Two distinct natural numbers from 1 to 9 are picked at random. What is the probability that their product has 1 in its unit place?
Two dice are thrown. What is the probability that difference of numbers on them is 2 or 3 ?
Suppose that there is a chance for a newly constructed building to collapse, whether the design is faulty or not. The chance that the design is faulty is 10%. The chance that the building collapses is 95% if the design is faulty, otherwise it is 45%. If it is seen that the building has collapsed, then what is the probability that it is due to faulty design?
What is the probability that all three boys sit together?