The following is an interview question from Zhou Xinfeng's book entitled 'A Practical Guide to Quantitative Finance Interview'.
Question: Let $B_t$ be a Brownian motion. What is the probability that $B_1 > 0$ and $B_2 < 0$?
The author provided two methods, first uses double integral and second uses independence and conditional probability. The following is the second approach.
$$P(B_1>0, B_2<0) = P(B_1>0)P(B_2-B_1 <0) P(|B_2 - B_1| > |B_1|) = \frac{1}{2} \times \frac{1}{2} \times \frac{1}{2} = \frac{1}{8}.$$
I do not understand how the author decompose $P(B_1>0, B_2<0)$ into $P(B_1>0)P(B_2-B_1 <0) P(|B_2 - B_1| > |B_1|).$
There are two aspects to this; I don't know which aspect you have trouble with.
Logic:
$$B_1 > 0 \cap B_2 < 0 \iff B_1 > 0 \cap B_2 - B_1 < 0 \cap |B_2 - B_1| > |B_1|$$
The latter two RHS terms literally say, between $t=1$ to $2$, you have to have a net leftward movement, and by an absolute distance bigger than the rightward movement between $t=0$ and $1$ (in order to end up $B_2 < 0$). I am not sure I can explain better than this.
Probability: From the logic formula above, we have:
$$P(B_1 > 0 \cap B_2 < 0) = P( B_1 > 0 \cap B_2 - B_1 < 0 \cap |B_2 - B_1| > |B_1|)$$
So next we need to argue that the three RHS terms are mutually independent. This comes from:
$X_1 = B_1$ and $X_2 = (B_2 - B_1)$ are independent because they don't overlap in time
$Sign(X_j)$ and $|X_j|$ are independent, because the Brownian motion is unbiased (symmetric about $0$).
Therefore all four of $Sign(B_1), |B_1|, Sign(B_2 - B_1), |B_2 - B_1|$ are mutually independent.
Now realizing that $B_1 > 0 \iff Sign(B_1) = +1$ etc allows us to break the three terms of the RHS apart.
$$P( B_1 > 0 \cap B_2 - B_1 < 0 \cap |B_2 - B_1| > |B_1|) \\ = P( B_1 > 0) ~~P(B_2 - B_1 < 0) ~~P(|B_2 - B_1| > |B_1|)$$ The first two terms each equals $1/2$ because of the Brownian motion being unbiased (symmetric about $0$), and the last term equals $1/2$ because $|B_1|$ and $|B_2 - B_1|$ are i.i.d. variables (and they're equal with prob $0$).