I have what seems like a simple question, but it's been a while since I've done any P/S. So i come to SE for help!
Two player pool/billiards: P1 has probability p of sinking a ball on any shot and has N balls remaining, while P2 has prob q and M balls remaining.
Question: What is the probability of the first player winning?
I can type out my reasoning (and will in an edit - will post before i reason it out though), but my answer has come down to:
$$\sum_{j=0}^{M-1} [p^N q^j \sum_{i=0}^\infty [(1-p)^i (1-q)^i]]$$
Is this correct or close?
Reasoning:
not really theoretical reasoning, but extrapolating the simple cases outwards:
(hit = h, miss = m, with probability p = w/p)
1 ball each: possible victory paths -
P1 wins w/p,
P1 m w/ (1-p), P2 m w/ (1-q), P1 wins w/ p
... etc - $p \sum_{i=0}^\infty (1-p)^i (1-q)^i$
2 and above balls each:
At some point, all the P1 hits must occur - $p^N$
All possible amounts of P2 hits must be accounted for - $\sum_{j=0}^{M-1} q^j$
Every miss variation is accounted for - * <-- This is where i think I am wrong. Is it actually a double sum in and of itself? IE $\sum_{i=0}^\infty \sum_{k=0}^\infty (1-p)^i (1-q)^k$ ?
EDIT: Some wolfram alpha shows me that $\sum_{i=0}^\infty (1-p)^i = \frac 1 p$, so I guess my final final equation can be simplified to
$$\sum_{j=0}^{M-1} \frac{p^N q^j}{pq} $$ ??
etc.