I was doing a problem involving athletes competing at the high jump, with the jth jumper achieving height $X_j$, with $i = 1..n$ and $X_i$ i.i.d. from a continuous distribution. We say the $j$th jumper sets a record if $X_j > X_i$ for $i = 1..j-1$. The question is to calculate the expected number of "double records" among the first $n$ jumpers, with a "double record" occurring at time $j$ if both the $j$th and $j-1$th jumpers set records.
The solution is pretty straightforward - we calculate $\sum_1^n P(R_j)$ where $P(R_j)$ is the probability that a double record occurs at $j$. It assumes that the events $R_j$ are independent -- I don't think this is true, though. Isn't it the case that $P(R_j|R_{j-1}) = 1/j > P(R_j)$?