Menu Close

How do you find the area of a triangle with three different sides?

How do you find the area of a triangle with three different sides?

For example, to find the area of a triangle with 3 sides given as: 3, 6, and 7, we assume that a = 3, b = 6, and c = 7. Then the semi-perimeter is, s = (a + b + c)/2 = (3 + 6 + 7)/2 = 8. We will find the area of the triangle using the Heron’s formula.

How do you find the area of a triangle with 3 sides in Python?

Python program to find the area of a triangle

  1. # Three sides of the triangle is a, b and c:
  2. a = float(input(‘Enter first side: ‘))
  3. b = float(input(‘Enter second side: ‘))
  4. c = float(input(‘Enter third side: ‘))
  5. # calculate the semi-perimeter.
  6. s = (a + b + c) / 2.
  7. # calculate the area.
  8. area = (s*(s-a)*(s-b)*(s-c)) ** 0.5.

How do you find the area of a right triangle with 3 vertices?

To find the area of a triangle where you know the x and y coordinates of the three vertices, you’ll need to use the coordinate geometry formula: area = the absolute value of Ax(By – Cy) + Bx(Cy – Ay) + Cx(Ay – By) divided by 2. Ax and Ay are the x and y coordinates for the vertex of A.

How do we find area of a triangle?

The area A of a triangle is given by the formula A=12bh where b is the base and h is the height of the triangle. Substitute 14 for b and 10 for h in the formula.

What is area of the triangle?

The area of a triangle is defined as the total space occupied by the three sides of a triangle in a 2-dimensional plane. The basic formula for the area of a triangle is equal to half the product of its base and height, i.e., A = 1/2 × b × h.

What program do you use to find the area of a triangle?

C

  1. #include
  2. int main()
  3. { float b ,h, area;
  4. b= 5;
  5. h= 13;
  6. area = (b*h) / 2 ;
  7. printf(“\n\n Area of Triangle is: %f”,area);
  8. return (0);

What is the area of a triangle with vertices at (- 3 3 2 3 and 4 7?

What is the area of a triangle with vertices at (-3,3), (2, 3), and (4,7)? 5 square units.

What is the perimeter of a triangle with vertices located at 1 4?

The perimeter is approximately 6.4 units.

Is the formula for area?

L is the length, W is the width and H is the height. A is the area of the base, h is the height. A is the area of the base, h is the height. r is the radius….Perimeter, Area, and Volume.

Table 2. Area Formulas
Shape Formula Variables
Square A=s2 s is the length of the side of the square.

How do you calculate the area of a triangle?

The area of a triangle is calculated from the length of three side by using the formula of mathematics. 3Calculate the area of a triangle using the formula from the length of the sides.

How to find the sides of a triangle?

Part of the series: Finding and Using the Area of a Triangle. All you need to find the side lengths of a triangle are the area and one of the side lengths. Find the side lengths of a triangle given the area and a side length with help from an experienced math tutor in this free video clip. Read more: http://www.ehow.com/video_12214808_si…

How do you find the perimeter of a triangle?

To find the perimeter of a triangle, you simply add together the lengths of all 3 sides. To find the area, multiply the base by the height, and then divide that number by 2. Thanks! How do we find area of a triangle? You can find the area of a triangle by multiplying the base by the height and then dividing that number by 2.

How do you find the length of a triangle?

Find the length of one side of the triangle. An equilateral triangle has three equal side lengths and three equal angle measurements, so if you know the length of one side, you know the length of all three sides. For example, you might have a triangle with three sides that are 6 cm long.