Using: $$ \begin{align} P(A =1|B=1) &= 0.9\\ P(A =1|C=1) &= 0.9\\ P(A=1) &= 0.5 \end{align} $$ I want to know the probability of $P(A=1|B=1,C=1)$
I also know that $B$ and $C$ and independent as well as conditionally independent given A.
My approach was to use the following: $$ \begin{align} P(A|BC) &= \frac{P(BC|A)P(A)}{P(BC)}\\ &= \frac{P(B|A)P(C|A)P(A)}{P(B)P(C)} &&\qquad \text{using independence}\\ &= \frac{\frac{P(A|B)P(B)}{P(A)}\frac{P(A|C)P(C)}{P(A)}P(A)}{P(B)P(C)}&&\qquad \text{using Bayes' rule}\\ &=\frac{P(A|B)P(B)P(A|C)P(C)}{P(A)P(B)P(C)}\\ &=\frac{P(A|B)P(A|C)}{P(A)} \end{align} $$
Using the known probabilities: $$ \begin{align} P(A=1|B=1,C=1) &= \frac{P(A=1|B=1)P(A=1|C=1)}{P(A=1)}\\ &=\frac{0.9*0.9}{0.5}\\ &=1.62 \end{align} $$
But this is clearly wrong, what step is wrong here?