Let $x\sim N(\mu,\sigma)$ and $x_i$ is ordered instances of random variate of $x$ for $i=1...n$. What is the probability that the series is in increasing (or decreasing) order?
The problem is finding the probility that consecutive differences $(x_{i+1}-x_i)$ are all positive (or negative) for $i=1...\left(n-1\right)$. At first intuition, it can be thought that the probaility is $2^{-n}$ because $P\left[\left(x_{i+1}-x_i\right)\right>0]=0.5$ for one couple and $x_i$s are independent. But this is wrong. Consider the example for $n=3$: The desired probability is $P\left[(x_3-x_2)>0|(x_{2}-x_1)>0\right]$. This probability is conditional, although $x_i$s are independent.
The simulation for normal distribution with several $n$s suggests this probability is $1/n!$. It is also similar for uniform and exponential distribution, so it looks like that this probability is distribution independent.
I guess this problem is related with order statistics which I am not much familiar with. So, what is the theory behind it?