A piece of spaghetti falls and breaks into three pieces with two break points selected randomly. What is the probability that an ACUTE angled triangle can be formed with the three pieces?
My initial attempt was to find cases of ALL triangles which I managed to conclude has a probability of 1/4. I have also seen a similar problem on this site which yields the same answer so I am happy with the steps up to this point! I would please like some help as to how I should now isolate the cases for acute triangles only?
Thanks!
Edit: Had a look at the link below but I think mine may be slightly different as it deals with the case of a totally random and independent break. Not the case where we break once and choose another of the two to break again.
There are two issues: (a) What is the probability that the segments form a triangle, and (b) What is the probability that they form an acute triangle. I agree that the link provided by @SteveD gives analytic answers to both: (a) $1/4$ and (b) $3\ln(2) - 2 = 0.0794.$ The approach there is mainly in terms of the locations of the two $Unif(0,1)$ points (there called $x$ and $y$).
The following simulation in R statistical software focuses primarily on the lengths of the three pieces formed. As a result of sorting, the 3-vector
lencontains these segments in increasing order of length for each broken piece of spaghetti.For a million broken pieces, logical m-vectors
triandacucontainTRUEorFALSEaccording as the pieces do or don't form a triangle, and whether or not the triangle is acute, respectively. Themeanof a logical vector it the proportion of itsTRUEs. A million iterations provides two or three place accuracy.