Given:
- Two persons A and B throw a pair of dice alternately.
- The first to get a sum of 4 on the dice wins.
- A starts the game.
Find the probability that B wins.
Step 1: Probability of getting sum 4 on a pair of dice:
Number of outcomes with sum 4: (1,3), (2,2), (3,1) = 3
Total outcomes = 36
\[
p = \frac{3}{36} = \frac{1}{12}
\]
Probability of **not** getting sum 4:
\[
q = 1 - p = \frac{11}{12}
\]
Step 2: The game proceeds with A starting first.
B wins if A fails on first turn and B succeeds, or both fail and then B wins later.
Step 3: Probability B wins:
\[
P = q \times p + q^2 \times q \times p + q^4 \times q \times p + \dots
\]
Where:
- \( q \times p \): A fails, B succeeds on first turn.
- \( q^2 \times q \times p = q^3 p \): both fail once, then B succeeds.
- \( q^4 \times q \times p = q^5 p \): both fail twice, then B succeeds.
Step 4: Sum the infinite geometric series:
\[
P = q p (1 + q^2 + q^4 + \dots) = q p \sum_{k=0}^\infty q^{2k} = q p \times \frac{1}{1 - q^2}
\]
Step 5: Substitute values:
\[
P = \frac{11}{12} \times \frac{1}{12} \times \frac{1}{1 - \left(\frac{11}{12}\right)^2} = \frac{11}{144} \times \frac{1}{1 - \frac{121}{144}} = \frac{11}{144} \times \frac{1}{\frac{23}{144}} = \frac{11}{144} \times \frac{144}{23} = \frac{11}{23}
\]
Therefore,
\[
\boxed{\frac{11}{23}}
\]