I'm aware that similar questions exist that ask how to solve the problem, but I have a specific question, given the following question/solution: Let $X_1, X_2, X_3$ be independent uniform $[0,1]$ random variables. What is the probability that we can form a triangle with three sticks of length $X_1, X_2, X_3$? Solution: By symmetry, any one of the sides could be the largest with equal probability, so $$ P(X_1, X_2, X_3 \text{form a triangle}) = 3 \int_0^1 \int_{x_2+x_3\geq x_1, x_2 \leq x_1, x_3 \leq x_1} dx_2dx_3dx_1$$ $$ = 3\int_0^1\frac{x_1^2}{2}dx_1 = \frac{1}{2}$$.
My confusion: I imagined that we would argue that "WLOG $X_1$ is the maximum" and not need to multiply by 3. My justification was that we want to find the probability that three numbers are valid sides of a triangle, and of those one of them is actually the largest -- whether we label this $X_1, X_2,$ or $X_3$ does not affect the probability. Why is this incorrect? How can I reason whether to use "WLOG any one could be the largest" or the symmetry argument for other similar problems?