R

Triangle Area: 4 Methods Compared

Editorial
8 min read
2026-03-04
Triangle Area: 4 Methods Compared

Four Methods for Calculating Triangle Area

There are several ways to calculate the area of a triangle. The right method depends on which measurements are known.

Method 1: Base Times Height

The standard formula A = (Base x Height) / 2 is the simplest and most commonly used. The height must be perpendicular to the chosen base. In a right triangle, the two legs directly serve as base and height.

Example: Triangle with base 8 m and height 5 m. Area = (8 x 5) / 2 = 20 m2.

Important: Any of the three sides can serve as the base. The corresponding height is the shortest distance from the opposite vertex to the (extended) base line.

Method 2: Heron's Formula

When all three side lengths are known but no height, use Heron's formula. First calculate the semi-perimeter: s = (a + b + c) / 2. Then: A = sqrt(s x (s-a) x (s-b) x (s-c)).

Example: Triangle with sides a = 5 m, b = 6 m, c = 7 m. s = (5+6+7)/2 = 9. A = sqrt(9 x 4 x 3 x 2) = sqrt(216) = 14.70 m2.

Method 3: Cross Product (Coordinates)

When vertex coordinates are known, calculate the area with: A = |x1(y2-y3) + x2(y3-y1) + x3(y1-y2)| / 2. This method is especially useful in surveying and computer graphics.

Method 4: Trigonometry

When two sides and the included angle are known: A = (a x b x sin(gamma)) / 2. This method is frequently used in geodesy and navigation.

Example: Two sides a = 10 m and b = 8 m with included angle 30 degrees. A = (10 x 8 x sin(30)) / 2 = (10 x 8 x 0.5) / 2 = 20 m2.

Which Method When?

Method 1 (Base x Height) is ideal when a side and its corresponding height can be directly measured (e.g., construction and renovation). Method 2 (Heron) is suitable when only the three sides are known (e.g., land surveying). Method 3 (Coordinates) is used with digital maps and CAD. Method 4 (Trigonometry) is applied when an angle is known.

Special Cases

Equilateral triangle: A = (sqrt(3) / 4) x a2 (with side length a). Isosceles triangle: The height bisects the base into two equal halves. Right triangle: The area is simply (leg1 x leg2) / 2.