An equilateral triangle is a triangle where all sides are the same length and all three angles are the same. The sum of the angles of a triangle is 180 degrees. 180 ÷ 3 = 60
Chat with our AI personalities
An equilateral triangle is also isosceles.Improved Answer:-They are both triangles whose 3 interior angles add up to 180 degrees and an equilateral triangle has 3 equal angles with 3 equal sides whereas an isosceles triangle has 2 equal angles with 2 equal sides
In an equilateral triangle, all 3 sides are the same length, so your equation would look something like this: P=the perimeter of the triangle (x+3)=length of each side P=3(x+3) If you wanted to simplify further, you would distribute the 3 to both the x and the 3 inside of the parentheses, giving you P=3x+9.
import java.util.*; public class triangle { public static Scanner vic= new Scanner(System.in); public static void main(String[]args){ System.out.println("Enter measurement of adjacent: "); int adj = vic.nextInt(); System.out.println("Enter measurement of opposite: "); int opp = vic.nextInt(); System.out.println("Enter measurement of hypoteneuse: "); int hyp = vic.nextInt(); if(( adj < opp )&&(opp<hyp)){ System.out.println("Right triangle"); System.out.println("Regular triangle"); } else if (( adj<opp )&&( opp > hyp)){ System.out.println("Isosceles triangle"); } else if (( adj == opp)&&(adj==hyp)&&(hyp==opp)){ System.out.println("Equilateral triangle"); } else{ System.out.println("Not a triangle"); }} }
A triangle with two lines of symmetry does not exist. It can have one line of symmetry (an isosceles triangle) or three (an equilateral triangle), but not two.
The sum of the three interior angles of a triangle always total 180 degrees.