A system sends 1s and 0s in sequence with equal probability. Errors are made, so the probability of receiving a digit $r_j$ (equal to 0 or 1) given that a certain digit $s_i$ (equal to a 0 or 1) was sent as follows:
sent / received 0 1
0 .90 .1
1 .005 .995
Compute the conditional probability P($s_i =0| r_j=1$) that a digit 0 was sent given that a 1 was received?
My proposed solution is that this is in the Bayes theorem problem domain.
So the P(A/B) = $\frac {P(B/A).P(A)}{P(B)}$
$\equiv \frac{(.1 * .91)}{1.05}$ = .0087
Please could someone confirm if this is correct?
Thanks in advance