On my assignment I have been given the word problem
Seventy percent of the aircraft that disappear in flight the Bermuda Triangle are recovered (P(r) = 0.7). Sixty percent of the recovered aircraft have an emergency locator (P(e|r) = 0.60). Unfortunately, 90% of the aircraft not recovered do not have such a locator. Suppose that an aircraft with a locator has disappeared. What is the probability that it will be recovered (P(r|e))?
From this problem I have found that the following are given
$$P(R) = 0.7$$ $$P(E|R) = 0.6$$ $$P( \neg E| \neg R) = 0.9$$
Using Bayes Rules I can solve for $P(R|E)$ the following way
$$P(R|E)= \dfrac{P(E|R)P(R)}{P(E)}$$ $$P(R|E)= \dfrac{0.6*0.7}{P(E)} = \dfrac{0.42}{P(E)}$$
To find that actual probability $P(E)$, I figured that I might need to work with the last given probability from the problem and so I devised
$$P(\neg R|\neg E) = \dfrac{P(\neg E|\neg R)P(\neg R)}{P(\neg E)}$$ $$P(\neg R|\neg E) = \dfrac{0.9*0.3}{P(\neg E)} = \dfrac{0.27}{P(\neg E)}$$ $$P(\neg R|\neg E) * P(\neg E) = 0.27$$ $$P(\neg E) = \dfrac{0.27}{P(\neg R|\neg E)}$$ $$Using \space P(E) = 1 - P(\neg E)$$ $$ P(E) = 1 - \dfrac{0.27}{P(\neg R|\neg E)}$$
Stealing from the initial application of Bayes Rule
$$P(R|E) * P(E)= 0.42$$ $$P(E) = \dfrac{0.42}{P(R|E)}$$
Combining the last two
$$ 1 - \dfrac{0.27}{P(\neg R|\neg E)} = \dfrac{0.42}{P(R|E)} $$
And, uhh, well, I'm not sure where I can go from here. I know that I need to determine $P(E)$ somehow to answer the problem, but I don't see how I can actually resolve out $P(E)$ or something that I need to resolve it.
Did I possible read the problem wrong?
Should the third sentence equate to $P(E) = 0.9$? I feel like that is incorrect though. Any suggestions..?
Begin, as always, with the Law of Total Probability, then invoke complementation to express it with the three known measures.
$$\begin{align}\def\P{\mathop{\mathbb P}}\P(E) &= \P(E\mid R)\P(R)+\P(E\mid \neg R)\P(\neg R) \\[1ex] &= \P(E\mid R)\P(R)+\big(1-\P(\neg E\mid \neg R)\big)\big(1-\P(R)\big) \\[1ex] &= 0.6\cdot 0.7+(1-0.9)(1-0.7)\\[1ex] &= 0.45\end{align}$$
That is all.