Let $X_1, X_2,..., X_n$ be $n$ random variables distributed uniform(0,1) and $X_{(1)},X_{(2)},..., X_{(n)}$ be the ordered statistics of $X_1,...,X_n$ such that:
$X_{(1)} < X_{(2)} < ... < X_{(n)}$
$X_{(1)} = min(X_1,...,X_n)$
$X_{(n)} = max(X_1,...,X_n)$
I know that these variables are distributed:
$X_{(i)} \sim Beta(i, n+1-i)$
I am looking to find the distribution of the difference of consecutive ordered statistics:
$Y_{i+1,i} = X_{(i+1)} - X_{(i)}$
in order to calculate the total probability:
$p = P(Y_{2,1} < d_{2,1} \cap Y_{3,2} < d_{3,2} \cap ... \cap Y_{n,n-1} < d_{n,n-1})$
Where $d_{i+1,i}$ are some given distances
This proof, Difference of order statistics in a sample of uniform random variables, suggests that the distribution of $Y_{i+1,i}$ is
$Y_{i+1,i} \sim Beta(1,n)$
This suggests that the events in the probability, $p$, above are independent... is this true?
I believe your subscripts on the $Y$'s are backwards. Your individual distributions for the order statistics and their differences seem correct. However, your assertion about independence of the $Y$'s seems counter-intuitive to me, and does not turn out to be true in the simple simulation below (using R), for $n = 5$ and the 2nd, 3rd, and 4th order statistics. All four such differences in neighboring order statistics are constrained to add to the range of the five observations.
I will leave it to you to fix your notation, decide whether I correctly guessed your intentions, and investigate association between differences in order statistics.
Note: The method of simulation is certainly not optimal for speed, but may be more transparent than an optimal one for those unfamiliar with R programming.