i just need a double check on my solution for the task below; The probability that roads are slippery during winter is 30% On slippery roads, there is a risk of traffic jams caused by accidents by 70% On clear roads the risk of a traffic jam is just 20% What is the probability that the road was slippery when Mrs Joans was caught up in a traffic jam?
S - event that the road is slippery = 30% NS - event that the road is not slippery = 70% T = Traffic Jam S - Slippery NS - Not Slippery
P(T|S) = 70% P(T|NS) = 20%
P(S|T) = P(T|S)P(S) / P(T|S)P(S) + P(T|NS)P(NS) = (0.7)(0.3)/(0.7)(0.3) + (0.2)(0.7) = 60%
Thanks