Triangle Area Calculator — 4 Methods (Base×Height, Heron, SAS, Coordinates)

Calculate the area of any triangle using 4 methods: base × height, Heron's formula (3 sides), SAS (2 sides + included angle), or coordinate geometry (3 vertices). Includes classification, inradius..

cm
cm
Planning notes, formulas, and examples

About the Triangle Area Calculator — 4 Methods (Base×Height, Heron, SAS, Coordinates)

The area of a triangle is one of the most fundamental calculations in all of geometry. Whether you are a student solving homework problems, an engineer computing cross-sections, a surveyor measuring land parcels, or a programmer implementing collision detection, knowing how to compute triangle area efficiently is essential.

There are four primary methods for finding the area of a triangle.

**Base × Height** is the simplest: A = ½bh, where b is any side chosen as the base and h is the perpendicular distance from the base to the opposite vertex. This method is ideal when the base and height are directly measurable.

**Heron's Formula** uses all three side lengths: first compute the semi-perimeter s = (a + b + c)/2, then A = √[s(s − a)(s − b)(s − c)]. This is invaluable when you know the sides but not the height.

**SAS (Side-Angle-Side)** requires two sides and the included angle: A = ½ab sin(C). Surveyors and navigators use this method frequently because angles are often easier to measure in the field than perpendicular heights.

**Coordinate Method** takes three vertices (x₁, y₁), (x₂, y₂), (x₃, y₃) and computes A = ½|x₁(y₂ − y₃) + x₂(y₃ − y₁) + x₃(y₁ − y₂)|. This is the go-to method in computer graphics, GIS, and computational geometry.

This calculator supports all four methods, automatically classifies the triangle (equilateral, isosceles, scalene; acute, right, obtuse), and computes the inradius and circumradius when side lengths are available.

When This Page Helps

Use this page when the same triangle can be described in several different ways. It keeps the base-height, Heron, SAS, and coordinate methods together so you can choose the formula that matches the givens and still compare the derived area against the rest of the triangle geometry.

How to Use the Inputs

  1. Select the calculation method: Base × Height, Heron's Formula, SAS, or Coordinates.
  2. Choose the measurement unit (mm, cm, in, m, or ft).
  3. Enter the required values for your chosen method.
  4. Or click a preset button to load a common triangle example.
  5. View the area, perimeter, classification, and all computed angles.
  6. Examine the side comparison bar chart for a visual sense of proportions.
  7. Consult the reference table to compare different triangle types and methods.
Formula used
Base × Height: A = ½ × b × h Heron's: s = (a+b+c)/2, A = √[s(s−a)(s−b)(s−c)] SAS: A = ½ × a × b × sin(C) Coordinates: A = ½|x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)| Inradius: r = A / s Circumradius: R = (abc) / (4A)

Example Calculation

Result: Area = 30 square units

Using the base-height method with base 10 and height 6 gives A = 1/2 × 10 × 6 = 30. The surrounding outputs then show the related side, radius, or classification details when enough information is available.

Tips & Best Practices

  • The base × height formula works for any triangle — just pick any side as the base and measure the perpendicular height to the opposite vertex.
  • Heron's formula fails if the three sides violate the triangle inequality (any one side ≥ sum of the other two).
  • The SAS method is the same as the magnitude of the cross product of two vectors, which is why it's fundamental in physics and 3D graphics.
  • For coordinates, the shoelace formula generalizes to any polygon — just sum the cross products of consecutive vertices.
  • The inradius r equals the radius of the largest circle that fits inside the triangle; the circumradius R is the radius of the circle passing through all three vertices.

When To Use This Calculator

Calculate the area of any triangle using 4 methods: base × height, Heron Use it when you need a repeatable calculation in the math / geometry category and want the setup, result, and supporting values kept together. This is especially helpful when small input changes, unit choices, or rounding decisions can change the final number.

How To Check The Result

Start by confirming that the inputs match the formula shown on the page. Then compare the main output with the worked example and any secondary values shown by the calculator. If the result will be used in another calculation, keep extra precision until the final step and record the assumptions beside the number.

Practical Notes

Treat the result as a calculation aid rather than a substitute for context. For schoolwork, include the formula and substitution steps. For planning, technical, financial, or health-related decisions, verify important numbers against primary records, current rules, or a qualified professional before acting on them.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • A = ½ × base × height is the simplest. Pick any side as the base, measure the perpendicular height from that side to the opposite vertex, and multiply.