I have $6$ triangle:
tris = Triangle/@Permutations[{{0,0,0},{1,0,0},{0,1,1}}]
They are in every sense the same triangle. But how to check that these triangles are exactly the same triangle? And I note Equal @@ tris and SameQ @@ tris both cannot do this.
Furthermore, none of the current methods (comments and answers) seem to be able to tell if the following six triangles(tris2) are the same triangle:
Clear["`*"]
sol = Solve[{x1^2/16 + 9 y1^2 == 1, x2^2/16 + 9 y2^2 == 1,
x3^2/16 + 9 y3^2 ==
1, (x1 - x2)^2 + (y1 - y2)^2 == (x1 - x3)^2 + (y1 -
y3)^2 == (x2 - x3)^2 + (y2 - y3)^2, (143 Sin[1/2])/1299 ==
1/3 (y1 + y2 + y3), 572/147 Cos[1/2] == 1/3 (x1 + x2 + x3)}, {x1,
y1, x2, y2, x3, y3}];
tris2 = Triangle[{{x1, y1}, {x2, y2}, {x3, y3}}] /. sol

Equal @@ (tris /. Triangle[x__] :> Triangle[Sort[x]])– Syed Aug 03 '23 at 12:20