Fermat point: Difference between revisions
mNo edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
The '''Fermat point''' (also called the Torricelli point) of a triangle <math>\triangle ABC</math> is a point <math>P</math> which has the minimum total distance to three [[vertices]] (i.e., <math>AP+BP+CP</math>). | The '''Fermat point''' (also called the Torricelli point) of a triangle <math>\triangle ABC</math> is a point <math>P</math> which has the minimum total distance to three [[vertices]] (i.e., <math>AP+BP+CP</math>). | ||
<asy> | |||
pair A=(2,4), B=(1,1), C=(6,1); | |||
pair pAB=rotate(60,B)*A, pCA=rotate(60,A)*C; | |||
path PC=pAB--C, PB=pCA--B; | |||
D(MP("A",A,2N)--MP("B",B,SW)--MP("C",C,SE)--cycle,green); | |||
D(C--pCA--A--pAB--B,red+dashed); | |||
DPA(PC^^PB,lightblue); | |||
D(MP("C'",pAB,NW),orange); | |||
D(MP("B'",pCA,NE),orange); | |||
D(A); D(B); D(C); | |||
D(MP("P",IP(PC,PB),E),blue); | |||
</asy> | |||
==Construction== | ==Construction== | ||
Revision as of 04:02, 26 September 2014
The Fermat point (also called the Torricelli point) of a triangle
is a point
which has the minimum total distance to three vertices (i.e.,
).
Construction
A method to find the point is to construct three equilateral triangles out of the three sides from
, then connect each new vertex to each opposite vertex, as these three lines will concur at first Fermat point.
See Also
This article is a stub. Help us out by expanding it.