How to compute the probability of sub-events given that we only have the events probabilities?
An example to clarify, drawing cards: We consider two cards at a time, assume we are given the following: Probability that we have two hearts is $p_{hh},$ one heart and one spades is $p_{hs},$ heart and clubs $p_{hc}$ and heart and diamonds $p_{hd}.$ And similarly for all other pairs we can consider. But the question is: how from these probabilities (describing events of pairs of cards) can we compute the probability of having a card of hearts? (i.e. now we're looking into single card events, I know the answer in this example is trivial because we just have 13/52, but I'm trying to learn how it can be computed as a subevent given that we know the probability of a larger event. I imagine a simple union of the four events will not give the correct answer, or does it? I mean $p_h = p_{hh}+p_{hs}+p_{hc}+p_{hd}$ is very likely wrong.
Nope, it is correct. However, $13/52$ is wrong.
If $p_{hd}$ is the probability of selecting one heart and one diamond in either order when selecting two cards from a standard deck, and so on, then $p_{hh}+p_{hs}+p_{hc}+p_{hd}$ is the probability of selecting at least one heart when selecting two cards.
Where as $p_{hs}+p_{hc}+p_{hd}$ is the probability of selecting exactly one heart.
$$p_{hh} = 1/17, p_{hd}=p_{hs}=p_{hc}=13/102\\~\\ p_{hh}+p_{hs}+p_{hc}+p_{hd} = 15/34\\~\\ p_{hs}+p_{hc}+p_{hd} = 13/34$$
The probability of not selecting any hearts is ${19}/{34}$
$$p_{hh}=\dfrac{\binom{13}{2}}{\binom{52}{2}} = \frac 1{17}\\p_{hs}=\dfrac{\binom{13}{1}\binom{13}{1}}{\binom{52}{2}} = \frac{13}{102}\\p_h = \dfrac{\binom{52}{2}-\binom{39}{2}}{\binom{52}{2}} = 1-\frac{19}{34} = \frac{15}{34}$$