Difference between revisions of "Equilateral triangle"

(Undo revision 49958 by Pogo 5 (talk) the added material was redundant)
(Picture included)
Line 1: Line 1:
 
{{stub}}
 
{{stub}}
 +
 +
<asy>
 +
pair A=(0,50),B=(43.301,-25),C=(-43.301,-25);
 +
draw(A--B--C--A);
 +
label("$60^{\circ}$",(-28,-16));
 +
draw(anglemark(B,C,A,300));
 +
label("$60^{\circ}$",(28,-16));
 +
draw(anglemark(A,B,C,300));
 +
label("$60^{\circ}$",(0,35));
 +
draw(anglemark(C,A,B,300));
 +
</asy>
  
 
An '''equilateral triangle''' is a [[triangle]] in which all sides have equal length and all angles have equal measure. Since a triangle has a total of <math>180</math> degrees, each angle of an equilateral triangle has <math>60</math> degrees.  
 
An '''equilateral triangle''' is a [[triangle]] in which all sides have equal length and all angles have equal measure. Since a triangle has a total of <math>180</math> degrees, each angle of an equilateral triangle has <math>60</math> degrees.  

Revision as of 11:38, 14 May 2018

This article is a stub. Help us out by expanding it.

[asy] pair A=(0,50),B=(43.301,-25),C=(-43.301,-25); draw(A--B--C--A); label("$60^{\circ}$",(-28,-16)); draw(anglemark(B,C,A,300)); label("$60^{\circ}$",(28,-16)); draw(anglemark(A,B,C,300)); label("$60^{\circ}$",(0,35)); draw(anglemark(C,A,B,300)); [/asy]

An equilateral triangle is a triangle in which all sides have equal length and all angles have equal measure. Since a triangle has a total of $180$ degrees, each angle of an equilateral triangle has $60$ degrees.

The equilateral triangle is the simplest regular polygon. It is also the only type of polygon that such that the equilateral polygon must also be the equiangular polygon.

One useful way to manipulate an equilateral triangle is to draw an altitude, which would divide it into two 30-60-90 right triangles. Using this, the area of an equilateral triangle can be found in terms of a side: $\frac{s^2\sqrt{3}}{4}$.