折断木棍成三段能否构成三角形
Forming a Triangle
题目详情
一根长度为 1 的木棍在两处随机折断(两次断点在 [0,1] 上均匀,且独立)。得到三段长度。
问:这三段能组成一个非退化三角形的概率是多少?
A stick of metre is randomly broken into three pieces. Given each break follows a uniform distribution along the stick, what is the probability that the three segments can form a valid triangle?
解析
经典“折断木棍”问题,答案为
Original Explanation
Consider this problem in the 2D-Plane, let be the first break and be the second break such that . Therefore, the lengths of the three segments are , , and . As you recall from geometry, in order for three side lengths to form a triangle, each side length must be less than the sum of the other two side lengths. We can rewrite this as:
Given these constraints (including ), they cover of the sample space of , which can be seen visually, along with the fact that the constraint only accounts for half of the possibilities since is equally likely to be greater than or less than . The final answer is .