Skip to main content
math

Scalene Triangle Area Calculator

Calculate the area of any triangle from its three side lengths using Heron's formula. Enter sides a, b, and c to compute the area without needing height or angles, perfect for surveying, land measurement, navigation, and general geometry problems.

Reviewed by Chase FloiedUpdated

This free online scalene triangle area calculator provides instant results with no signup required. All calculations run directly in your browser — your data is never sent to a server. Enter your values below and see results update in real time as you type. Perfect for everyday calculations, homework, or professional use.

Length of side a

Length of side b

Length of side c

Results

Area

26.8328 sq units

How to Use This Calculator

1

Enter your input values

Fill in all required input fields for the Scalene Triangle Area Calculator. Most fields include unit selectors so you can work in your preferred unit system — metric or imperial, whichever matches your problem.

2

Review your inputs

Double-check that all values are correct and that you have selected the right units for each field. Incorrect units are the most common source of calculation errors and can produce results that are off by factors of 2, 10, or more.

3

Read the results

The Scalene Triangle Area Calculator instantly computes the output and displays results with units clearly labeled. All calculations happen in your browser — no loading time and no data sent to a server.

4

Explore parameter sensitivity

Try adjusting individual input values to see how the output changes. This is a quick and effective way to develop intuition about how different parameters influence the result and to identify which inputs have the largest effect.

Formula Reference

Scalene Triangle Area Calculator Formula

See calculator inputs for the governing equation

Variables: All variables and their units are labeled in the calculator interface above. Input fields accept values in multiple unit systems — select your preferred unit from the dropdown next to each field.

When to Use This Calculator

  • Use the Scalene Triangle Area Calculator when you need a quick mathematical result without writing out all the steps manually, saving time on repetitive calculations.
  • Use it to verify hand calculations on tests or assignments and catch arithmetic mistakes.
  • Use it when teaching or explaining mathematical concepts to others, demonstrating how changing inputs affects the result.
  • Use it to explore the behavior of mathematical functions across a range of inputs.

About This Calculator

The Scalene Triangle Area Calculator is a free mathematical calculation tool for students, educators, and professionals who need quick, reliable results. Calculate the area of any triangle from its three side lengths using Heron's formula. Enter sides a, b, and c to compute the area without needing height or angles, perfect for surveying, land measurement, navigation, and general geometry problems. The underlying algorithms implement well-established mathematical formulas and numerical methods. Results are computed instantly in the browser. This tool is useful for learning, verification of hand calculations, and rapid exploration of mathematical relationships. All computation happens locally — no data is sent to a server.

About Scalene Triangle Area Calculator

The Scalene Triangle Area Calculator computes the area of any triangle from its three side lengths using Heron's formula: A = sqrt(s(s-a)(s-b)(s-c)), where s is the semi-perimeter. This formula works for all triangles (scalene, isosceles, equilateral, right) and requires only side lengths, no height or angle measurements. Heron's formula is named after Hero of Alexandria (1st century CE), who published it in his work Metrica, though it was likely known to Archimedes. The formula is invaluable in surveying and land measurement where direct height measurement is impractical, in navigation for computing areas from distance measurements, and in computer graphics for triangulated surface calculations.

The Math Behind It

Heron's formula gives the area of a triangle with sides a, b, c as A = sqrt(s(s-a)(s-b)(s-c)) where s = (a+b+c)/2 is the semi-perimeter. The formula can be derived from the cosine rule and the standard area formula A = (1/2)ab*sin(C). Starting with cos(C) = (a^2 + b^2 - c^2)/(2ab) and sin^2(C) = 1 - cos^2(C), substituting into A = (1/2)ab*sin(C) and simplifying the resulting expression yields Heron's formula after considerable algebra. The key factorization uses the identity 4a^2b^2 - (a^2+b^2-c^2)^2 = (2ab+a^2+b^2-c^2)(2ab-a^2-b^2+c^2) = ((a+b)^2-c^2)(c^2-(a-b)^2) = (a+b+c)(a+b-c)(c+a-b)(c-a+b) = 16s(s-a)(s-b)(s-c). Heron's formula has several important properties: it is symmetric in a, b, c (which makes geometric sense since area does not depend on which side is labeled which); it gives zero when the triangle degenerates (one side equals the sum of the other two); and the expression under the square root is positive if and only if the triangle inequality is satisfied. Numerically, Heron's formula can lose precision for very flat triangles (where one side is nearly equal to the sum of the other two). In such cases, a numerically stable variant by Kahan should be used: sort sides so a >= b >= c, then A = (1/4)*sqrt((a+(b+c))(c-(a-b))(c+(a-b))(a+(b-c))). Heron's formula generalizes to cyclic quadrilaterals (Brahmagupta's formula) and to general quadrilaterals (Bretschneider's formula).

Formula Reference

Heron's Formula

A = sqrt(s(s-a)(s-b)(s-c))

Variables: s = (a+b+c)/2 (semi-perimeter), a, b, c = side lengths

Worked Examples

Example 1: Scalene Triangle 7-8-9

Find the area of a triangle with sides 7, 8, and 9.

Step 1:Semi-perimeter: s = (7+8+9)/2 = 12
Step 2:s-a = 12-7 = 5, s-b = 12-8 = 4, s-c = 12-9 = 3
Step 3:A = sqrt(12 * 5 * 4 * 3) = sqrt(720) = 26.8328

The area is approximately 26.83 square units.

Example 2: Right Triangle 3-4-5

Verify Heron's formula for a 3-4-5 right triangle.

Step 1:s = (3+4+5)/2 = 6
Step 2:A = sqrt(6 * 3 * 2 * 1) = sqrt(36) = 6
Step 3:Cross-check: (1/2)*3*4 = 6 (matches)

The area is exactly 6 square units, confirming the formula.

Common Mistakes & Tips

  • !Forgetting to compute the semi-perimeter (half the perimeter, not the full perimeter). s = (a+b+c)/2, not a+b+c.
  • !Using side lengths that violate the triangle inequality. If a + b <= c, the formula gives an imaginary number (negative under the square root).
  • !Mixing up Heron's formula with the determinant-based formula. Heron's uses side lengths; the coordinate formula uses vertex coordinates.

Related Concepts

Used in These Calculators

Calculators that build on or apply the concepts from this page:

Frequently Asked Questions

Does Heron's formula work for all types of triangles?

Yes. Heron's formula works for scalene, isosceles, equilateral, right, acute, and obtuse triangles. The only requirement is that the three sides satisfy the triangle inequality.

Who was Heron of Alexandria?

Heron (or Hero) was a Greek mathematician and engineer who lived in Alexandria around the 1st century CE. He is known for many inventions including the aeolipile (a primitive steam engine) and for his mathematical works including Metrica, where this formula was published. The formula may have been known to Archimedes 200 years earlier.

How does Heron's formula relate to the cross product?

If the triangle vertices are given as vectors, the area equals half the magnitude of the cross product of two edge vectors. This is equivalent to Heron's formula when expressed in terms of coordinates, and is often more computationally convenient.