Let's say I have two urns. Urn #1 contains 30 red marbles and 10 black marbles. Urn #2 contains 20 red marbles and 20 black marbles. I choose an urn at random, then choose a random marble from the urn. If the marble I chose is red, what is the probability that I chose Urn #1?
My approach: $$P(Urn 1|Red) = \frac{P(Urn1)P(Red| Urn 1)}{P(Red)} = \frac{\frac{1}{2}*\frac{3}{4}}{(\frac{1}{2}*\frac{3}{4})+(\frac{1}{2}*\frac{1}{2})}=\frac{3}{5}$$
Is there a more practical logical and/or formula approaches to tackle this problem?
Edit: Added P(Urn1) to fix the formula.