answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write a statement that must be true about an equilateral triangle and an isosceles triangle?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

Triangle with 2 lines of symmetry?

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.


Write an argument to show that an equilateral triangle cannot have a right?

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


Write a Java program to determine whether the triangle is equilateral triangle?

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"); }} }


Write a general statement concerning the sum of the measures of the angles of a triangle?

The sum of the three interior angles of a triangle always total 180 degrees.


The side length of an equilateral triangle is x plus 3 write an expression for the perimeter of a triangle?

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.

Related questions

Triangle with 2 lines of symmetry?

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.


What do you write when classifying triangles?

there is many ways to write when classifying a triangle, you can classify it by its sides or angles. When you classify it by angles you can classify it by acute, obtuse, and right triangle. when classyfing it by sides its isosceles, equilateral, and scalene!


Can a write triangle be equilateral?

No


How can you start the program 'read in the lengths of the sides of a triangle and determine whether the triangle is an isosceles triangle two sides are equal an equilateral triangle three sides are'?

This would depend on what programming language you wanted to write it in. For example, in Pascal, the code might look like this: Program Isosceles; Var A, B, C : Real; Begin WriteLn('Input side A.'); ReadLn(A); WriteLn('Input side B.'); ReadLn(B); WriteLn('Input side C.'); ReadLn(C); If A = B Then Begin If B = C Then Begin WriteLn('This triangle is equilateral.'); End Else Begin WriteLn('This triangle is isosceles.'); And so on.


Write an argument to show that an equilateral triangle cannot have a right?

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


Does an isosceles triangle have equal or different length and width?

How many sides does a isosceles have? Please write back or improve my answer. LOVE YOU<3 BYE(: How many sides does a isosceles have? Please write back or improve my answer. LOVE YOU<3 BYE(:


The altitude of an equilateral triangle is 8.3m. find the perimeter?

28.75m


How do you write an equilateral triangle line of symmetry?

A line joining any vertex to the midpoint of the opposite side. Because of the properties of an equilateral triangle, this line may be described as the median, the perpendicular bisector of a side or an angle bisector.


Write a Java program to determine whether the triangle is equilateral triangle?

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"); }} }


Write a program in c to display isosceles triangle dy digit?

#include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("\n Enter the 3 sides of Triangle: "); scanf("%d %d %d",&a,&b,&c); printf("\nYour entered side is a=%d b=%d c=%d",a,b,c); if(a==b && b==c && a==c) { printf("\n EQUILATERAL TRIANGLE.");//All sides equal in case of Equilateral triangle } else if(a!=b&&b!=c) printf("\n SCALENE TRIANGLE."); //All sides unequal else printf("\n ISOCELES TRIANGLE."); //At least 2 sides equal getch(); }


How do you find the height of an equilateral triangle if you have the length of the hypotenuse?

An equilateral triangle hasn't a hypotenuse; hypotenuse means the side opposite the right angle in a right triangle. An equilateral triangle has no right angles; rather all three of its angles measure 60 degrees. Knowing the length of the hypotenuse of a right triangle does not give enough information to determine the triangle's height. But the length of a side (which is the same for every side) of an equilateral triangle is enough information from which to calculate the height of that triangle. The first way is simply to use the formula that has been developed for this purpose: height = (length X sqrt(3)) / 2. But you can also use the geometry of right triangles to solve for the height. That is because you can bisect the triangle with a vertical line from the top vertex to the center of the base. The length of that line, which splits the equilateral triangle into two right triangles, is the height of the equilateral triangle. We know a lot about each right triangle formed by bisecting the equilateral triangle: * - The hypotenuse length is the length of the equilateral triangle's side. * - The base length is half the length of the hypotenuse. * - The angle opposite the hypotenuse is 90 degrees. * - The angle opposite the vertical is 60 degrees (the measure of every angle of any equilateral triangle). * - The angle opposite the base is 30 degrees (half of the bisected 60-degree angle). * - (Note that the sum of the angles does equal 180 degrees, as it must.) Now to solve for the height of a right triangle. There are a few ways. For labeling, let's let h=height of the equilateral triangle and the vertical side of the right triangle; A=every angle of the equilateral triangle (each 60o); s=side length of any side of the equilateral triangle and thus the hypotenuse of the right triangle. Since the sine of an angle of a right triangle is equal to the ratio of the opposite side divided by the hypotenuse, we can write that sin(A) = h/s. Solving for h, we get h=sin(A)/s. With trig tables you can now easily find the height.


Write a general statement concerning the sum of the measures of the angles of a triangle?

The sum of the three interior angles of a triangle always total 180 degrees.