Question 1182193
<font color=black size=3>
H = heads
T = tails


There are 2 sides per coin and 3 coins, so we have 2^3 = 8 different ways to flip three coins. This is the same as saying "there are 8 ways to flip a coin three times". I think the first interpretation makes more sense (in my opinion).


Here are the 8 ways to flip three coins<ol><li>HHH</li><li><font color=blue>HHT</font></li><li><font color=blue>HTH</font></li><li><font color=blue>THH</font></li><li>TTH</li><li>THT</li><li>HTT</li><li>TTT</li></ol>The stuff highlighted in blue represents getting exactly 2 heads. This happens 3 times. Basically because we have 3 slots, where each tail could go. So the question "how many ways are there to get 2 heads" is the same as "how many ways are there to get 1 tail".


So that's why we end up with the final answer <font color=red>3/8</font> (there are 3 ways to get what we want, shown in blue, out of 8 ways total).


-----------------------------------------------------------------------


Here's a more formulaic approach:
n = 3
k = 2
p = 1/2


Binomial formula
P(k) = (n C k)*(p)^k*(1-p)^(n-k)
P(2) = (3 C 2)*(1/2)^2*(1-1/2)^(3-2)
P(2) = 3*(1/2)^2*(1/2)^(1)
P(2) = 3*(1/2)^3
P(2) = 3*(1/8)
P(2) = <font color=red>3/8</font>


The n = 3 is the sample size, which is the number of coins we're flipping (or number of coin tosses).
k = 2 represents the exact number of heads that we want
p = 1/2 is the probability of flipping heads on any coin
the notation n C k refers to the combination formula, and it's the exact same number of blue items we counted in the last section. 

-----------------------------------------------------------------------


Answer: <font color=red>3/8</font>
</font>