You are given three unique line segments randomly (all outcomes with equal probability) with integer lengths ranging from 1-100.
Question:
What is the probability, given the line segments you got, that you're able to create a triangle?
Without loss of generality, let our three lengths be $A,B,C$ with $A>B>C$. If it is a triangle we must have $B>A/2$
Here is an image illustrating my approach:
Black line is A. Blue line is B. Green line is C. B must cross the mid section. C must cross B but not be longer than B.
But here is where i'm stuck... Is there a nice (more towards easy rather than advanced) approach to solve this problem? If you have another approach, feel free to demonstrate it.