We have a deck of 52 cards we split it in to two decks. First deck contains 20 red and 14 black cards, second deck contains 6 red and 12 black card, from each deck we pull a card. From these two cards we pick one of them.
What is the probability of getting a red card in the end?
Let $P(A_{1})$ be the probability of getting a red card out of both decks
$$
P(A_{1})= \frac{\binom{34}{20}+\binom{18}{6}-\binom{34}{20}\binom{18}{6}}{\binom{52}{1}}
$$
$\binom{18}{6}$ is the chance of getting a red card out of the second deck, $\binom{18}{6}*\binom{34}{20}$ is the chance of getting intercepted, which we don't want and finally $\binom{34}{20}$ is the chance of getting a red card out the first deck.
After that We have to calculate the probability of getting a red card from the first deck and getting a black from the second, Let P($A_{2}$) be the probability of that: $$P(A_{2})=\frac{\binom{34}{20}*\binom{18}{12}}{52}*0.5$$ Similar situation here, $\binom{34}{20}$ give the probability of getting a red card from one deck, from the other we get a black card and we *0.5 for obvious reasons.
Analogically we do the same for $A_{3}$ : $$P(A_{3})=0.5*\frac{\binom{34}{14}*\binom{18}{6}}{\binom{52}{1}}$$
So the final answer is $P(A_{1})+P(A_{2})+P(A_{3})$ Is that correct ?
One more thing we have to find the probability of pulling a red card which came from the first deck: $$P(A_{2})=\frac{\binom{34}{20}*1}{52}*0.5$$
Are my calculations correct and what do I have to do if they aren't