What are the two ways to find a triangle's area?
If you know the base and the perpendicular height, use half base times height. If you only know the three side lengths, use Heron's formula. Pick the method that matches your measurements.
// maths › 2D Shapes
Find a triangle's area from base and height, or from its three side lengths using Heron's formula. Choose the method to match what you know.
½×base×height, or Heron: √(s(s−a)(s−b)(s−c)) with s = (a+b+c)/2
If you know the base and the perpendicular height, use half base times height. If you only know the three side lengths, use Heron's formula. Pick the method that matches your measurements.
A way to get the area from the three sides alone. Find the semi-perimeter s (half of a + b + c), then the area is the square root of s(s-a)(s-b)(s-c). No height needed.
A rule that any two sides must add up to more than the third, otherwise the sides cannot close into a triangle. The calculator checks this and warns you if they fail.
Because half base times height assumes the height drops at a right angle to the base. Using a slanted side instead would overstate the area.
Yes, it is a right triangle (since 3 squared plus 4 squared equals 5 squared) and its area is a tidy 6. It is the classic example for both Pythagoras and Heron's formula.