I am not sure how to solve the following problem:
i has a triangle in which each of the three known vertex positions A, B, C is inaccurate, which means that each of them can deviate to certain known radii rA, rB, rC in arbitrary directions.
Given such a triangle, I want to calculate how much the difference in two specific edge lengths (for example, the difference between the edge lengths a and edge b) of a triangle can change in the worst case. is there an elegant mathematical solution to this problem?
the naive way that I thought calculates all 360 ^ 3 angular combinations and measures the edge differences for each case, which is a pretty high invoice.
source share