So I have a bag of 6 balls: 3 red, 2 blue and 1 green.
Events:
A: I draw a red ball
B: I draw a blue ball
C: I draw a green ball
I do not replace the balls (thus, resulting in conditional probability).
Is the probability that I remove balls in the order: R, B, G, the same as the probability that I remove them in the order B, G, R? Or any order?
Intuitively, the probability of order R-B-G is $\frac{3}{6}.\frac{2}{5}.\frac{1}{4}$ and B-G-R gives $\frac{2}{6}.\frac{1}{5}.\frac{3}{4}$, both of which are $\frac{1}{20}$.
Thus, is p(A and-then B and-then C) = p(A and-then-C and-then B)? If so, why?
Order does not matter. You are right.
I think the rule for which you are looking is called the chain rule (of probability).
http://en.wikipedia.org/wiki/Chain_rule_%28probability%29
If you want to compute
$P(A_1, A_2, A_3)$, you can do so like this:
$$P(A_1, A_2, A_3) = P(A_3 | A_1, A_2) P(A_2 | A_1) P(A_1)$$
But since $P(A_1, A_2, A_3) = P(A_1, A_3, A_2)$, we can do:
$$P(A_1, A_2, A_3) = P(A_2 | A_1, A_3) P(A_1 | A_3) P(A_3)$$
Oh, when I say $P(A_1, A_2, A_3)$, I mean $P(A_1, A_2, A_3) = P(A_1 \cap A_2 \cap A_3)$
Edit: Um, $A_1$ can be removing the green ball, $A_2$ for red and $A_3$ for blue.