01.76$, so $\text{SD} \approx 10.1$.)
Approach: We derive the PMF using a direct counting argument, then compute moments via indicator random variables.
---
Part (i): PMF
The event $\{T = t\}$ means the $t$-th card is an Ace, and exactly 1 of the first $t - 1$ cards is also an Ace. In a uniformly random permutation of 52 distinct cards, every arrangement is equally likely.
This is the negative hypergeometric distribution: sampling without replacement from $N = 52$ items with $K = 4$ successes (Aces), the probability that the $r$-th success occurs on draw $t$ is
$P(T = t) = \frac{\binom{t-1}{r-1}\binom{N - t}{K - r}}{\binom{N}{K}}$
With $r = 2$, $K = 4$, $N = 52$:
$P(T = t) = \frac{(t-1)\,\binom{52 - t}{2}}{\binom{52}{4}}, \qquad t = 2, 3, \ldots, 50$
Why the formula works: Choose which 1 of the first $t-1$ positions holds the first Ace ($t-1$ choices), then choose which 2 of the remaining $52-t$ positions (after position $t$) hold the other 2 Aces ($\binom{52-t}{2}$ choices). Divide by the total ways to place 4 Aces among 52 positions ($\binom{52}{4} = 270{,}725$).
The valid range is $t = 2$ (both Aces drawn first) through $t = 50$ (the last 2 cards of the first 50 are both Aces; the remaining 2 Aces occupy positions 51 and 52, and the formula gives $\binom{2}{2} = 1$ way to place them). At $t = 51$: $\binom{1}{2} = 0$, so $P(T \geq 51) = 0$, confirming $t_{\max} = 50$.
---
Part (ii): $E[T]$ via Indicator Variables
Write $T = 2 + Y$ where $Y$ counts the number of non-Ace cards drawn before the 2nd Ace. Define indicators $Y_j$ for each non-Ace card $j = 1, \ldots, 48$:
$Y_j = \begin{cases} 1 & \text{if non-Ace } j \text{ appears before the 2nd Ace} \\ 0 & \text{otherwise} \end{cases}$
To find $P(Y_j = 1)$, consider the relative ordering of non-Ace $j$ and the 4 Aces -- a group of 5 items. All $5!$ orderings are equally likely. Non-Ace $j$ appears before the 2nd Ace iff it falls in position 1 or 2 among these 5 items:
$P(Y_j = 1) = \frac{2}{5}$
By linearity of expectation:
$E[T] = 2 + \sum_{j=1}^{48} P(Y_j = 1) = 2 + 48 \cdot \frac{2}{5} = 2 + \frac{96}{5} = \boxed{\frac{106}{5} = 21.2}$
This matches the order-statistic formula $E[T] = r(N+1)/(K+1) = 2 \times 53/5$.
---
Part (iii): $\text{Var}(T)$ via Indicators
Since $T = 2 + \sum Y_j$, we have $\text{Var}(T) = \text{Var}\!\left(\sum_{j=1}^{48} Y_j\right)$.
Individual variances:
$\text{Var}(Y_j) = \frac{2}{5} \cdot \frac{3}{5} = \frac{6}{25}$
Covariances: For two distinct non-Aces $i \neq j$, consider the relative ordering of these 2 non-Aces and the 4 Aces (6 items total). $Y_i Y_j = 1$ iff both non-Aces appear before the 2nd Ace, i.e., both land in the positions before the 2nd Ace among these 6 items.
By exhaustive enumeration over all $\binom{6}{2} = 15$ ways to place the 2 non-Aces among 6 positions, exactly 3 placements satisfy the condition ($\{1,2\}, \{1,3\}, \{2,3\}$ when the remaining 4 Ace positions yield a 2nd order statistic larger than both non-Ace positions). So:
$P(Y_i Y_j = 1) = \frac{3}{15} = \frac{1}{5}$
$\text{Cov}(Y_i, Y_j) = \frac{1}{5} - \left(\frac{2}{5}\right)^2 = \frac{1}{5} - \frac{4}{25} = \frac{1}{25}$
Putting it together:
$\text{Var}(T) = 48 \cdot \frac{6}{25} + 2\binom{48}{2} \cdot \frac{1}{25} = \frac{288}{25} + \frac{2 \times 1128}{25} = \frac{288 + 2256}{25} = \boxed{\frac{2544}{25} = 101.76}$
This matches the negative hypergeometric variance formula $\text{Var}(T) = \frac{r(N+1)(N-K)(K-r+1)}{(K+1)^2(K+2)} = \frac{2 \cdot 53 \cdot 48 \cdot 3}{25 \cdot 6} = \frac{2544}{25}$.
---
Answer:
- $P(T = t) = \dfrac{(t-1)\binom{52-t}{2}}{\binom{52}{4}}$ for $t = 2, 3, \ldots, 50$
- $E[T] = \dfrac{106}{5} = 21.2$
- $\text{Var}(T) = \dfrac{2544}{25} = 101.76$
Intuition
This problem is a clean illustration of the indicator variable method for computing moments of stopping times in sampling-without-replacement problems. The key move is reframing the question: instead of tracking the sequential process ("when does the 2nd Ace appear?"), you ask each non-Ace card a yes/no question ("do you appear before the 2nd Ace?"). By considering only the relative ordering of each non-Ace against the 4 Aces -- a group of just 5 items -- you get $P(Y_j = 1) = 2/5$ without any complicated combinatorics. The covariance calculation uses the same trick with 6 items instead of 5.
This technique generalizes immediately: for the $r$-th success among $K$ special items in $N$ total, the expected stopping time is $r(N+1)/(K+1)$, and you can always compute it by symmetry arguments on small groups. In practice, this kind of reasoning shows up whenever you need the distribution of an order statistic from a finite population -- for example, estimating when a particular event will occur in a finite sequence of trades, or computing the expected time to fill a basket of orders. The indicator approach almost always beats direct PMF summation for moments.
Open the full interactive solver →