Overview
This chapter introduces Heron's formula — a direct method to find the area of a triangle when the lengths of all three sides are known. Starting from basic ideas (semiperimeter and triangle inequality), the chapter derives Heron’s formula A = sqrt[s(s − a)(s − b)(s − c)] (where s is the semiperimeter) and shows its use in a variety of problems. Importance: Heron’s formula removes the need for altitude knowledge, so it is especially useful in problems where heights are not given or are hard to construct. The chapter also discusses special cases (right and isosceles triangles), connections such as area = r·s (r = inradius), and applications (computation of areas in geometry and real-life problems like land measurement). By the end, students will understand the derivation, conditions for use, be able to compute areas from side lengths, and apply the formula to solve related problems.
Learning Objectives
- Define semi-perimeter and state Heron's formula for the area of a triangle
- Explain the role of the triangle inequality in the applicability of Heron's formula
- Derive Heron's formula for the area of a triangle with sides a, b and c
- Apply Heron's formula to calculate the area of a triangle when all three sides are given
- Calculate the area of a right-angled triangle using Heron's formula and verify with (1/2)·base·height
- Use Heron's formula to find the area of an isosceles triangle from its side lengths
- Solve numerical problems on scalene triangles using Heron's formula accurately
- Determine whether three given lengths form a valid triangle and compute its area if they do
Topics in this chapter
10 topics · tap a topic title to jump straight to it.
Preliminaries
Preliminaries
Key Point: Perimeter: P = a + b + c
What this section covers
Preliminaries are the basic ideas and formulas you must know before using Heron’s formula to find the area of a triangle. They include the parts of a triangle, the standard area formula using base and height, the concept of perimeter and semiperimeter, and the triangle inequality.
Key terms and definitions
- Side lengths — the three edges of a triangle usually denoted a, b and c.
- Base and height (altitude) — if one side is taken as the base, the height is the perpendicular distance from the opposite vertex to that base. Height is usually denoted by h.
- Perimeter — P = a + b + c.
- Semiperimeter — s = (a + b + c)/2. Semiperimeter is used in Heron’s formula.
- Triangle inequality — for any triangle, the sum of any two sides is greater than the third: a + b > c, b + c > a, c + a > b. This ensures a valid triangle.
Area using base and height
If a side is chosen as the base (b), and h is the corresponding height, then Area = (1/2) × base × height = (1/2) × b × h. This is the simplest area formula but requires knowing the perpendicular height.
Why semiperimeter appears in Heron’s formula
When the height is not known, Heron’s formula expresses the area A in terms of the three sides a, b, c alone by first using the semiperimeter s = (a + b + c)/2 and then computing A = sqrt[s(s − a)(s − b)(s − c)]. The semiperimeter groups the three side lengths symmetrically and arises naturally in the algebraic derivation of the formula.
Units and checking results
Always keep units consistent: if sides are in cm then area will be in cm². After computing with Heron’s formula, check reasonableness: area should be positive and less than (1/4)×perimeter² (a rough check), and for right triangles compare with (1/2)×(legs product) if applicable.
Short procedure to find area (preparatory steps)
- Confirm side lengths satisfy triangle inequality.
- If height is given, use Area = (1/2) × base × height.
- If only sides are given, compute semiperimeter s = (a + b + c)/2, then use Heron’s formula A = sqrt[s(s − a)(s − b)(s − c)].
Real-life context (brief)
These preliminaries are used when measuring triangular plots of land, designing triangular roof trusses or sail shapes, and estimating material required for triangular panels where only side lengths are known or easily measured. Semiperimeter and Heron’s formula let you get area from side measurements without measuring heights.
- Example 1 — Area from base and height: A triangle has base 10 cm and height 6 cm. Area = (1/2) × 10 × 6 = 30 cm².
- Example 2 — Area from three sides (Heron preparation): Sides are 13 cm, 14 cm and 15 cm. Semiperimeter s = (13 + 14 + 15)/2 = 21. Check triangle inequality (13+14>15 etc.). Then area (using Heron) = √[21(21−13)(21−14)(21−15)] = √[21×8×7×6] = √7056 = 84 cm².
- Example 3 — Right triangle quick check: Sides 3 cm, 4 cm, 5 cm. Semiperimeter s = (3+4+5)/2 = 6. Heron gives area = √[6(6−3)(6−4)(6−5)] = √[6×3×2×1] = √36 = 6 cm². This matches the base–height method (1/2×3×4 = 6).
- \[Perimeter: P = a + b + c\]
- \[Semiperimeter: s = (a + b + c) / 2\]
- \[Area (base & height): A = (1/2) × base × height = (1/2) × b × h\]
- \[Heron’s (full formula — introduced after preliminaries): A = √[ s(s − a)(s − b)(s − c) ]\]
- \[Triangle inequality (validity check): a + b > c\]\[b + c > a\]\[c + a > b\]
Semiperimeter
Semiperimeter
Key Point: Semiperimeter: s = (a + b + c) / 2
Definition: The semiperimeter of a triangle is half of its perimeter. If the side lengths are a, b and c, the semiperimeter s is
s = (a + b + c) / 2
Why it matters: The semiperimeter is a central quantity in Heron’s formula for the area of a triangle. Writing the area in terms of s makes the formula symmetric and often simplifies computation. Heron’s formula for the area K of a triangle is
K = sqrt{ s (s - a) (s - b) (s - c) }
Here, the factors (s − a), (s − b) and (s − c) are nonnegative exactly when the side lengths satisfy the triangle inequalities. Semiperimeter also appears in relations with the inradius r and circumradius R:
- Area and inradius: K = r · s (so r = K / s).
- Alternative relation using circumradius: K = abc / (4R) (this is not directly involving s but often used together with Heron’s formula).
Geometric interpretation: s − a equals the semiperimeter of the triangle formed by cutting off the side a from the perimeter; it also equals the sum of the two other sides minus that side, all divided by 2. In formulas, (s − a), (s − b), (s − c) measure how far each side is from the semiperimeter; they determine whether a valid triangle is possible and appear inside the square root of Heron’s expression.
Practical tip for computations: Compute s first, then the three differences (s − a), (s − b), (s − c), multiply them with s, and take the square root. For integer-sided triangles these intermediate products are often integers, which makes arithmetic easier.
- Example 1 (right triangle 3-4-5): a=3, b=4, c=5. Semiperimeter s = (3+4+5)/2 = 6. Heron: K = sqrt[6*(6-3)*(6-4)*(6-5)] = sqrt[6*3*2*1] = sqrt[36] = 6. (Matches base*height/2 = 3*4/2 = 6.)
- Example 2 (scalene triangle 7-8-9): a=7, b=8, c=9. s = (7+8+9)/2 = 12. K = sqrt[12*(12-7)*(12-8)*(12-9)] = sqrt[12*5*4*3] = sqrt[720] = 6*sqrt(20) ≈ 26.8328.
- \[Semiperimeter: s = (a + b + c) / 2\]
- \[Heron's formula (area): K = sqrt{ s (s - a) (s - b) (s - c) }\]
- \[Area using inradius: K = r · s => r = K / s\]
- \[For equilateral triangle of side a: s = 3a/2\]\[area = (sqrt(3)/4) a^2 = sqrt{ s (s-a)^3 } (since s-a = a/2)\]
Statement of Heron's Formula
Statement of Heron's Formula
Key Point: Semiperimeter: s = (a + b + c) / 2
Statement: For a triangle with side lengths a, b and c, let the semiperimeter be s = (a + b + c)/2. Then the area (Δ) of the triangle is given by
Δ = √[ s(s − a)(s − b)(s − c) ]
This formula (Heron's formula) gives the area using only the three side lengths. It applies only when a, b, c satisfy the triangle inequalities (each side less than the sum of the other two).
Useful related formula: If r is the inradius (radius of the inscribed circle), then Δ = r · s. Combining this with Heron’s formula gives r = √[ (s − a)(s − b)(s − c) / s ].
How to use (steps):
- Compute s = (a + b + c)/2.
- Compute the three terms (s − a), (s − b), (s − c).
- Compute the product s(s − a)(s − b)(s − c) and take its square root to get the area.
Notes: For special triangles, Heron’s formula reduces to familiar results: for a right triangle with legs p and q, area = (1/2)pq; for an equilateral triangle of side a, Δ = (√3/4) a² (this follows from Heron’s formula when a = b = c).
- Numeric example (3, 4, 5): s = (3+4+5)/2 = 6; Δ = √[6(6−3)(6−4)(6−5)] = √[6·3·2·1] = √36 = 6.
- Equilateral triangle (side = 6): s = 9; Δ = √[9(9−6)(9−6)(9−6)] = √[9·3·3·3] = √243 = 9√3 ≈ 15.588. (Matches Δ = (√3/4)·6² = 9√3.)
- Real-life: To find the area of a triangular plot when only boundary lengths are measured (e.g., sides 50 m, 65 m, 87 m), apply Heron’s formula after verifying triangle inequality; this gives the land area without measuring heights.
- \[Semiperimeter: s = (a + b + c) / 2\]
- \[Heron's formula: Δ = √[ s(s − a)(s − b)(s − c) ]\]
- \[Area–inradius relation: Δ = r · s\]
- \[Inradius: r = √[ (s − a)(s − b)(s − c) / s ]\]
- \[Equilateral special case: Δ = (√3 / 4) a² (when a = b = c)\]
Proof of Heron's Formula
Proof of Heron's Formula
Key Point: Semiperimeter: s = (a + b + c) / 2
Statement: For a triangle with side lengths a, b, c and semiperimeter s = (a + b + c)/2, the area Δ is given by
Δ = sqrt{ s (s − a) (s − b) (s − c) }.
Proof (using altitude and projection):
- Consider triangle ABC with sides a = BC, b = CA, c = AB. Let the altitude from A meet BC at D. Denote AD = h and BD = x, so CD = a − x.
- The area is Δ = (1/2) × base × height = (1/2) a h. (1)
- From the right triangles ABD and ACD we have b^2 = x^2 + h^2 and c^2 = (a − x)^2 + h^2. Subtracting these two gives b^2 − c^2 = x^2 − (a − x)^2 = 2ax − a^2, so x = (b^2 − c^2 + a^2)/(2a). (2)
- Eliminate h using b^2 = x^2 + h^2 ⇒ h^2 = b^2 − x^2. Multiply by 4a^2 to clear denominators: 4a^2 h^2 = 4a^2 b^2 − (b^2 − c^2 + a^2)^2. (3)
- Compute the right-hand side and factor. After algebraic simplification one obtains 16 Δ^2 = (a + b + c)(−a + b + c)(a − b + c)(a + b − c). (This follows from substituting Δ = (1/2) a h into (3) and factoring the polynomial.)
- Set s = (a + b + c)/2. Then the four factors become 2s, 2(s − a), 2(s − b), 2(s − c). So 16 Δ^2 = 16 s (s − a) (s − b) (s − c), and therefore Δ^2 = s (s − a) (s − b) (s − c). Taking the positive square root (area is nonnegative) gives Heron's formula: Δ = sqrt{ s (s − a) (s − b) (s − c) }.
Remarks: The formula requires a, b, c to satisfy triangle inequalities so that s − a, s − b, s − c are nonnegative. The algebraic factoring step can be verified by explicit expansion or symbolic algebra software.
- Example 1: For sides 13, 14, 15. Compute s = (13+14+15)/2 = 21. Then Δ = sqrt[21(21−13)(21−14)(21−15)] = sqrt[21·8·7·6] = sqrt[7056] = 84 square units.
- Example 2 (right triangle check): For sides 3, 4, 5. s = (3+4+5)/2 = 6. Δ = sqrt[6(6−3)(6−4)(6−5)] = sqrt[6·3·2·1] = sqrt[36] = 6. This matches (1/2)·3·4 = 6.
- Example 3: For an isosceles triangle with sides 10, 10, 12. s = (10+10+12)/2 = 16. Δ = sqrt[16(6)(6)(4)] = sqrt[2304] = 48 square units.
- \[Semiperimeter: s = (a + b + c) / 2\]
- \[Area via altitude: Δ = (1/2) · base · height = (1/2) a h\]
- \[Heron's formula: Δ = sqrt{ s (s − a) (s − b) (s − c) }\]
- \[Equivalent squared form: Δ^2 = s (s − a) (s − b) (s − c)\]
- \[Expanded product form: Δ = (1/4) · sqrt{ (a + b + c)(−a + b + c)(a − b + c)(a + b − c) }\]
Conditions and Validity
Conditions and Validity
Key Point: Semi‑perimeter: s = (a + b + c) / 2
Overview: Heron’s formula gives the area of a triangle with side lengths a, b and c as A = sqrt[s(s−a)(s−b)(s−c)], where s = (a+b+c)/2 is the semi‑perimeter. For the formula to be applicable and to give a valid (real, non‑negative) area, certain conditions on a, b and c must hold.
Conditions for a valid triangle (Triangle inequality):
- All sides must be positive: a > 0, b > 0, c > 0.
- The sum of any two sides must be greater than the third:
- a + b > c, b + c > a, c + a > b.
Equivalently, in terms of s: s − a = (b + c − a)/2, s − b = (c + a − b)/2 and s − c = (a + b − c)/2. Each of s − a, s − b, s − c must be positive for a non‑degenerate triangle.
Validity of Heron’s formula:
- The expression under the square root, D = s(s−a)(s−b)(s−c), must be non‑negative. If D > 0 the triangle has positive area; if D = 0 the triangle is degenerate (the three points are collinear) and area = 0; if D < 0 the given numbers cannot be the sides of a real triangle.
- Because s − a = (b + c − a)/2, the triangle inequalities guarantee s − a, s − b and s − c are positive, so D > 0 for a proper triangle. If any one of the triangle inequalities is an equality (for example a + b = c) then one of s − a, s − b, s − c equals 0 and D = 0 (degenerate triangle).
Interpretation: Checking the triangle inequalities is the first step before applying Heron’s formula. If they hold, Heron’s formula produces a real positive area. If any inequality fails, there is no triangle and Heron’s formula is not applicable.
Short proof idea for positivity: Since s − a = (b + c − a)/2 etc., the triangle inequalities are exactly the statements s − a > 0, s − b > 0 and s − c > 0. Hence s and each factor (s − a),(s − b),(s − c) are non‑negative, making the product D non‑negative.
- Valid triangle: a = 7, b = 8, c = 9. Check: 7+8>9, 8+9>7, 9+7>8 (all true). s = (7+8+9)/2 = 12. s−a = 5, s−b = 4, s−c = 3. Area = sqrt[12·5·4·3] = sqrt(720) ≈ 26.8328 square units.
- Degenerate triangle (area zero): a = 2, b = 3, c = 5. Here 2+3 = 5, so the points are collinear. s = (2+3+5)/2 = 5, product s(s−a)(s−b)(s−c) = 5·3·2·0 = 0, area = 0.
- Impossible set (no triangle): a = 1, b = 2, c = 4. Check: 1+2 < 4 so triangle inequality fails. These lengths cannot form a triangle; do not apply Heron’s formula.
- \[Semi‑perimeter: s = (a + b + c) / 2\]
- \[Heron's formula: Area = sqrt[s (s − a) (s − b) (s − c)]\]
- \[Triangle inequalities (existence): a + b > c\]\[b + c > a\]\[c + a > b\]
- \[Degenerate case: If a + b = c (or any equality)\]\[then s(s−a)(s−b)(s−c) = 0 and Area = 0\]
- \[Validity condition: s(s−a)(s−b)(s−c) ≥ 0\]\[strict inequality (>0) for non‑degenerate triangle\]
Special Cases and Derived Formulas
Special Cases and Derived Formulas
Key Point: Heron’s formula: Δ = √[s(s − a)(s − b)(s − c)], where s = (a + b + c)/2
Overview
Heron’s formula gives the area Δ of any triangle with side lengths a, b, c and semiperimeter s = (a + b + c)/2 as
Δ = √[s(s − a)(s − b)(s − c)]
From this general formula we can derive simpler formulas for important special cases (right-angled, isosceles, equilateral) and connect area to the inradius r and circumradius R. The derivations show how Heron’s formula unifies many triangle area results.
- Right‑angled triangle
If a and b are the legs and c is the hypotenuse, geometrically Δ = (1/2)ab. Heron’s formula reduces to the same result when you substitute s = (a + b + c)/2 and use c² = a² + b² (Pythagoras). - Isosceles triangle (equal sides s₁ = s₂ = s)
Let equal sides = u, base = b. Semiperimeter s = (2u + b)/2 = u + b/2. Using Heron and simplifying yields:Δ = (b/4)·√(4u² − b²)This is equivalent to (1/2)·b·h where h = (1/2)·√(4u² − b²) is the altitude to the base. - Equilateral triangle (all sides = a)
s = 3a/2, so Heron gives:Δ = √[(3a/2)(3a/2 − a)^3] = (√3/4)·a² - Formulas involving inradius r and circumradius R
From Heron we get the area in terms of the inradius r:Δ = r·sand in terms of the circumradius R:Δ = abc/(4R)which can be combined to express r and R by sides and area. - Degenerate (collinear) case
If one side equals the sum of the other two (triangle inequality becomes equality), then s − a (or similar) = 0 and Heron gives Δ = 0. This corresponds to the triangle collapsing to a straight line.
Intuition and uses
Heron’s formula is especially useful when only side lengths are known (no height or angles). The derived special‑case formulas simplify calculations and are widely used in surveying, construction (roof slopes, triangular supports), and design where specific triangle types occur.
- Right triangle: a = 6 m, b = 8 m, c = 10 m. Area = (1/2)·6·8 = 24 m². Using Heron: s = (6+8+10)/2 = 12, Δ = √[12(12−6)(12−8)(12−10)] = √[12·6·4·2] = √576 = 24 m².
- Isosceles triangle: equal sides u = 13 cm, base b = 10 cm. Use Δ = (b/4)·√(4u² − b²) = (10/4)·√(4·169 − 100) = 2.5·√(676 − 100) = 2.5·√576 = 2.5·24 = 60 cm².
- Equilateral triangle: side a = 8 cm. Area = (√3/4)·a² = (√3/4)·64 = 16√3 ≈ 27.712 cm².
- Using inradius r: triangle with sides 13, 14, 15. s = (13+14+15)/2 = 21. Δ by Heron = √[21·8·7·6] = √7056 = 84. Then r = Δ/s = 84/21 = 4. (So a circle of radius 4 fits exactly inside the triangle.)
- \[Heron’s formula: Δ = √[s(s − a)(s − b)(s − c)]\]\[where s = (a + b + c)/2\]
- \[Right triangle (legs a\]\[b): Δ = (1/2)·a·b\]
- \[Isosceles (equal sides u\]\[base b): Δ = (b/4)·√(4u² − b²)\]
- \[Equilateral (side a): Δ = (√3/4)·a²\]
- \[Inradius r: Δ = r·s → r = Δ/s\]
- \[Circumradius R: Δ = abc/(4R) → R = abc/(4Δ)\]
Applications
Applications
Key Point: Semi-perimeter: s = (a + b + c) / 2
What this topic covers
The Applications of Heron's Formula show how to compute the area of a triangle when the three side lengths are known, and how to use that area in practical geometry problems (triangulation of regions, area of polygons by splitting into triangles, finding inradius, verifying degenerate triangles, etc.). Heron’s formula avoids the need to know a base and height.
Heron’s formula (idea and steps)
- Given a triangle with side lengths a, b and c, compute the semi-perimeter s = (a + b + c)/2.
- Compute the area A using A = sqrt[s (s - a) (s - b) (s - c)].
- Interpret results: if s(s-a)(s-b)(s-c) = 0 the triangle is degenerate (area 0); if negative, the given sides do not form a triangle.
Common applications
- Finding the area of a triangular plot, roof panel, sail or truss when only the three side lengths are available.
- Finding the area of a polygon by dividing it into triangles and applying Heron to each triangle.
- Computing the inradius r of a triangle using r = A / s once A is known from Heron.
- Checking feasibility of given side lengths (triangle inequality shows up because Heron’s radicand must be non-negative).
Worked approach (how to apply in problems)
- Check triangle inequality: a + b > c, b + c > a, c + a > b. If false, stop — no triangle.
- Compute s.
- Compute the product s(s-a)(s-b)(s-c) and then its square root to get area.
- Use that area for further calculations (inradius, material estimates, combining triangle areas for a polygon).
- Example 1 (classic numeric): Sides a = 13, b = 14, c = 15. Compute s = (13+14+15)/2 = 21. Then A = sqrt[21(21-13)(21-14)(21-15)] = sqrt[21*8*7*6] = sqrt[7056] = 84 square units. So the triangle area is 84.
- Example 2 (right triangle check): Sides 3, 4, 5. Compute s = (3+4+5)/2 = 6. A = sqrt[6(6-3)(6-4)(6-5)] = sqrt[6*3*2*1] = sqrt[36] = 6. (Matches 1/2*3*4 = 6.)
- Real-life example: A triangular garden has fencing lengths 13 m, 14 m and 15 m. Using Heron's formula we found the area 84 m2. That area tells you how much turf or topsoil is needed (material estimate = area * depth or cost per square meter).
- Polygon application: To find the area of a quadrilateral with diagonal dividing it into two triangles, measure the three sides of each triangle, compute each area by Heron, and add them to get the quadrilateral area.
- \[Semi-perimeter: s = (a + b + c) / 2\]
- \[Heron's formula (area of triangle): A = sqrt[ s (s - a) (s - b) (s - c) ]\]
- \[Inradius from area: r = A / s (where r is radius of inscribed circle)\]
- \[Condition for degenerate or invalid triangle: s(s-a)(s-b)(s-c) <= 0 (equals 0 gives degenerate triangle of area 0)\]
- \[Related formula (useful extension): circumradius R = (a b c) / (4 A) — needs A from Heron\]
- \[Extension for cyclic quadrilateral (related concept): Brahmagupta’s formula: Area = sqrt[(s-a)(s-b)(s-c)(s-d)] where s = (a+b+c+d)/2\]
Problems and Examples
Problems and Examples
Key Point: Semiperimeter: s = (a + b + c) / 2
Overview: Heron’s formula gives the area of a triangle when you know the lengths of all three sides. It is useful when the height is not known or hard to measure. The semiperimeter s = (a + b + c) / 2 is first calculated, and the area A is then A = sqrt[s(s − a)(s − b)(s − c)]. Always check that the three lengths can form a triangle (triangle inequalities) before applying the formula.
Step-by-step method to solve problems:
- Check triangle validity: a + b > c, a + c > b, b + c > a. If equality holds (sum = third side) you get area 0 (collinear).
- Compute semiperimeter s = (a + b + c)/2.
- Compute the product P = s(s − a)(s − b)(s − c). If P < 0 there is an error (invalid triangle). If P = 0 the area is zero.
- Area A = sqrt(P). Include units (square units).
- For right triangles you can use Heron to check or use A = (1/2)·(legs product) which should match Heron’s result.
Worked examples:
- Example 1 (scalene): Sides 13, 14, 15.
s = (13 + 14 + 15)/2 = 21.
A = sqrt[21(21−13)(21−14)(21−15)] = sqrt[21·8·7·6] = sqrt[7056] = 84.
Area = 84 square units. - Example 2 (isosceles): Sides 13, 13, 10.
s = (13 + 13 + 10)/2 = 18.
A = sqrt[18(18−13)(18−13)(18−10)] = sqrt[18·5·5·8] = sqrt[3600] = 60.
Area = 60 square units. - Example 3 (right triangle check): Sides 6, 8, 10 (right triangle).
s = (6 + 8 + 10)/2 = 12.
A = sqrt[12(12−6)(12−8)(12−10)] = sqrt[12·6·4·2] = sqrt[576] = 24.
Using the right-triangle formula A = (1/2)·6·8 = 24, consistent with Heron. - Invalid example (no triangle): Sides 2, 3, 5.
2 + 3 = 5 so points are collinear → s = 5 and s − 5 = 0 → product = 0 → area = 0 (not a triangle).
Tips: Keep units consistent. For large or decimal sides, use a calculator for the square root. For numerical answers give appropriate rounding. Heron’s formula is especially handy in surveying, construction, and geometry problems where only side lengths are known.
- Sides 13, 14, 15 → s = 21 → A = sqrt[21·8·7·6] = 84 sq. units.
- Sides 13, 13, 10 (isosceles) → s = 18 → A = sqrt[18·5·5·8] = 60 sq. units.
- Sides 6, 8, 10 (right triangle) → s = 12 → A = sqrt[12·6·4·2] = 24 sq. units (also 1/2·6·8 = 24).
- Check validity: sides 2, 3, 5 → 2 + 3 = 5 → collinear → area = 0 (not a triangle).
- Application problem: Given three fence lengths forming a triangular plot, use Heron to find the plot area when heights are unknown.
- \[Semiperimeter: s = (a + b + c) / 2\]
- \[Heron's formula: Area A = sqrt[ s (s − a) (s − b) (s − c) ]\]
- \[Triangle validity: a + b > c\]\[a + c > b\]\[b + c > a (if equality holds area = 0)\]
- \[Right-triangle area (special case): A = (1/2)·(product of the two legs) — should match Heron\]
- \[Units: If sides are in metres\]\[area is in square metres (m^2).\]
Connections with Other Concepts
Connections with Other Concepts
Key Point: Semi-perimeter: s = (a + b + c) / 2
Overview
Heron’s formula gives the area Δ of a triangle directly from its three side lengths a, b and c by using the semi-perimeter s = (a+b+c)/2: Δ = sqrt[s(s−a)(s−b)(s−c)]. This single formula connects the geometric idea of area with algebra, trigonometry, coordinate geometry, optimization and practical measurement (surveying, construction).
Key connections (concise)
- Algebra: Derivation and manipulation of Heron’s formula use algebraic identities and square-root expressions. Understanding s and the product s(s−a)(s−b)(s−c) requires factorization and sometimes completing the square in derivations.
- Pythagorean theorem / Right triangles: For a right triangle with legs a and b and hypotenuse c, Heron’s formula reduces to Δ = (1/2)ab, matching the base×height formula. This shows consistency with Pythagoras and area by base-height.
- Trigonometry: Area can also be written as (1/2)ab sin C. Combining this with Heron gives the relation Δ = abc/(4R) where R is the circumradius, linking sides, area and circle geometry.
- Inradius and semiperimeter: Heron implies Δ = r·s where r is the inradius. This connects area with circle inscribed in the triangle and with s.
- Coordinate geometry: Given coordinates of vertices, side lengths from distance formula feed into Heron; the determinant (shoelace) area formula equals the Heron result — linking analytic geometry and metric formulas.
- Inequalities and feasibility: The triangle inequality (a+b>c, etc.) is required for the expression under the square root to be positive; Heron therefore reflects basic feasibility conditions for triangles.
- Optimization: For a fixed perimeter, Heron’s formula implies the area is maximized when the triangle is equilateral. This links to problems in maxima/minima.
- Extension to cyclic quadrilaterals: Heron’s idea generalizes: Brahmagupta’s formula for the area of a cyclic quadrilateral uses its semi-perimeter analogously.
Practical interpretation
Heron’s formula is especially useful in surveying and construction when only side lengths (measured with tapes or from coordinates) are available and heights are hard to measure. It lets you compute area without dropping a perpendicular or knowing an angle.
- Numeric: triangle with sides 13, 14 and 15. s = (13+14+15)/2 = 21. Area = sqrt[21(21−13)(21−14)(21−15)] = sqrt[21·8·7·6] = sqrt[7056] = 84 (square units).
- Right triangle: sides 3, 4, 5. s = 6. Area = sqrt[6(6−3)(6−4)(6−5)] = sqrt[6·3·2·1] = sqrt36 = 6, same as (1/2)×3×4 = 6.
- Coordinate example: vertices (0,0), (4,0), (1,3). Side lengths from distance formula give a≈4, b≈√18, c≈√10. Using Heron yields area 6, which matches the shoelace/determinant area 0.5×|0·(0−3)+4·(3−0)+1·(0−0)| = 6.
- Surveying: three boundary posts are measured to be 80 m, 65 m and 55 m apart. Use Heron with s = 100 to find area = sqrt[100·20·35·45] = sqrt[31,500,00] ≈ 561.25 m² (use calculator).
- Optimization: for fixed perimeter P, split into three equal sides (equilateral) maximizes area. If P = 30, each side = 10 and area = (sqrt3/4)·10² ≈ 43.30, which is larger than for other partitions with same perimeter.
- \[Semi-perimeter: s = (a + b + c) / 2\]
- \[Heron’s formula: Area Δ = sqrt[s(s − a)(s − b)(s − c)]\]
- \[Area with inradius: Δ = r · s (r = inradius)\]
- \[Trigonometric form: Δ = (1/2)·a·b·sin(C)\]
- \[Circumradius relation: Δ = a·b·c / (4R) (R = circumradius)\]
- \[Right-triangle reduction: for right triangle with legs a and b, Δ = (1/2)·a·b (Heron reduces to this)\]
Common Mistakes and Tips
Common Mistakes and Tips
Key Point: Semi‑perimeter: s = (a + b + c) / 2
What to remember (short procedure)
- Check the triangle inequality first: for sides a, b, c ensure a + b > c, b + c > a and c + a > b. If any equality (a + b = c) the triangle is degenerate and area = 0.
- Compute the semi‑perimeter: s = (a + b + c) / 2.
- Compute the expression under the root: D = s(s − a)(s − b)(s − c). It must be ≥ 0. The triangle exists only if D ≥ 0; numerical negative due to rounding means check precision.
- Area = √D. Keep units: if sides are in metres, area is in m².
Common mistakes (and how to avoid them)
- Forgetting the triangle inequality: plugging non‑triangle sides into Heron gives a negative number under the square root. Always check a + b > c etc. first.
- Rounding too early: rounding s or intermediate products can produce a negative D due to loss of precision for nearly degenerate triangles. Keep full precision until final sqrt and round the final area only.
- Sign and subtraction errors: mixing up (s − a), (s − b), (s − c) or using absolute values incorrectly. Use the order exactly as Heron states.
- Unit mismatch: input sides must be in the same unit. Convert lengths first, then compute area (result in square of that unit).
- Misusing Heron when a simpler formula exists: if you know a height or the triangle is right‑angled, use (1/2) × base × height for simpler and more accurate results.
- Interpreting very small negative D as real negatives: numerical rounding can give D ≈ −1e‑12 for valid triangles—treat very small negatives as zero if they are within rounding error tolerance.
Useful tips
- If two sides and included angle are known, compute area using (1/2)ab sin C — often more stable than Heron for that data set.
- When perimeter is fixed, area is maximized for the equilateral triangle. For fixed two sides, area is maximized when the included angle is 90° (since sinθ ≤ 1).
- For integer sides, Heron often gives integer area (famous example 13, 14, 15 → area 84). This is useful in contest checks.
- When programming, avoid computing D by multiplying many terms in a poor order; use algorithms or high‑precision types to reduce round‑off error. If D becomes slightly negative, clamp to zero if within tolerance.
- Draw and label the triangle: labelling sides a, b, c and indicating s and (s − a) etc. reduces algebra mistakes.
Quick checklist before final answer
- Are side lengths all positive and in the same unit?
- Does each pair sum to more than the third (triangle inequality)?
- Have you kept precision until the final step?
- Have you considered a simpler area formula if height or right angle is known?
- Example 1 — Classic integer case (13, 14, 15): s = (13+14+15)/2 = 21. D = 21(21−13)(21−14)(21−15) = 21·8·7·6 = 7056. Area = √7056 = 84. Tip: integer final answer confirms no rounding issues.
- Example 2 — Right triangle (3, 4, 5): s = (3+4+5)/2 = 6. D = 6(6−3)(6−4)(6−5) = 6·3·2·1 = 36. Area = √36 = 6, which matches (1/2)×3×4 = 6. Tip: for right triangles use (1/2)·leg1·leg2 for quicker result.
- Example 3 — Typical non‑integer result (5, 7, 10): s = (5+7+10)/2 = 11. D = 11(11−5)(11−7)(11−10) = 11·6·4·1 = 264. Area = √264 ≈ 16.248. Tip: keep intermediate values unrounded; round final area as needed.
- Example 4 — Invalid set (1, 2, 3): 1+2 = 3 so triangle is degenerate; D = 0 and area = 0. Mistake to avoid: applying Heron blindly without checking triangle inequality.
- \[Semi‑perimeter: s = (a + b + c) / 2\]
- \[Heron's formula: Area = √[ s (s − a) (s − b) (s − c) ]\]
- \[Triangle inequality (existence): a + b > c\]\[b + c > a\]\[c + a > b (if equality holds area = 0)\]
- \[Right triangle area (when applicable): Area = (1/2) × base × height\]
- \[Equilateral triangle (special case): Area = (√3 / 4) × a² (derivable from Heron or direct geometry)\]
- \[Area from two sides and included angle: Area = (1/2) a b sin C (useful and sometimes more stable)\]
Key Concepts
- Triangle
- A polygon with three sides and three angles; the simplest closed polygon.
- Side
- A straight edge of a triangle; its length is usually denoted by a, b, or c.
- Perimeter
- The total length around a triangle; sum of its three side lengths: a + b + c.
- Semi-perimeter (s)
- Half the perimeter of a triangle: s = (a + b + c) / 2. Used in Heron's formula.
- Heron's formula
- Formula to find area Δ of a triangle when side lengths a, b, c are known: Δ = sqrt[s(s − a)(s − b)(s − c)].
- Area
- Measure of the region enclosed by a triangle, commonly denoted Δ or A.
- Triangle inequality
- For any triangle, the sum of lengths of any two sides is greater than the third: a + b > c, etc.
- Scalene triangle
- A triangle with all three sides of different lengths and all angles different.
- Isosceles triangle
- A triangle with at least two equal sides and two equal base angles.
- Equilateral triangle
- A triangle with all three sides equal; each angle is 60°.
- Right-angled triangle
- A triangle with one 90° angle; sides satisfying Pythagoras: a^2 + b^2 = c^2 (c = hypotenuse).
- Base
- A chosen side of the triangle on which the corresponding altitude is dropped; used to compute area.
- Altitude (height)
- Perpendicular distance from a vertex to the opposite side (or its extension).
- Included angle
- The angle formed between two given sides of a triangle (angle between sides a and b is C).
- Area by 1/2·ab·sin C
- Area formula using two sides and the included angle: Δ = (1/2)·a·b·sin(C).
- Inradius (r)
- Radius of the circle inscribed in the triangle (incircle); r = Δ / s, where Δ is area and s is semiperimeter.
- Incenter
- Point where the three angle bisectors meet; center of the incircle, equidistant from all sides.
- Degenerate triangle
- A “triangle” where the sum of two sides equals the third; points are collinear and area is zero.
- Exradius
- Radius of an excircle (circle tangent to one side and extensions of the other two); r_a = Δ/(s − a).
- Circumradius (R)
- Radius of the circumscribed circle through the three vertices; R = (a·b·c) / (4·Δ).
Practice Questions
-
Heron's formula to find the area of a triangle with sides a, b, c and semiperimeter s is: / भुजाओं a, b, c और अर्ध-परिमाप s वाले त्रिभुज का क्षेत्रफल ज्ञात करने के लिए हेरॉन का सूत्र है: (a) √[s(s+a)(s+b)(s+c)] / √[s(s+a)(s+b)(s+c)] (b) √[s(s−a)(s−b)(s−c)] / √[s(s−a)(s−b)(s−c)] (c) (1/2) × base × height / (1/2) × आधार × ऊँचाई (d) s × (s−a) × (s−b) × (s−c) / s × (s−a) × (s−b) × (s−c)
Show answer
(b) √[s(s−a)(s−b)(s−c)] / √[s(s−a)(s−b)(s−c)] — Heron's formula uses the semiperimeter s = (a+b+c)/2 and the three differences (s−a), (s−b), (s−c) under the square root. / हेरॉन के सूत्र में अर्ध-परिमाप s = (a+b+c)/2 और तीन अंतरों (s−a), (s−b), (s−c) का वर्गमूल लिया जाता है।
-
A triangle has sides 13 cm, 14 cm and 15 cm. What is its semiperimeter? / एक त्रिभुज की भुजाएँ 13 सेमी, 14 सेमी और 15 सेमी हैं। इसका अर्ध-परिमाप क्या है? (a) 18 cm / 18 सेमी (b) 21 cm / 21 सेमी (c) 24 cm / 24 सेमी (d) 42 cm / 42 सेमी
Show answer
(b) 21 cm / 21 सेमी — s = (a+b+c)/2 = (13+14+15)/2 = 42/2 = 21 cm. / s = (a+b+c)/2 = (13+14+15)/2 = 21 सेमी।
-
Using Heron's formula, what is the area of a triangle with sides 3 cm, 4 cm and 5 cm? / हेरॉन के सूत्र का उपयोग करके, 3 सेमी, 4 सेमी और 5 सेमी भुजाओं वाले त्रिभुज का क्षेत्रफल क्या है? (a) 5 cm² / 5 सेमी² (b) 6 cm² / 6 सेमी² (c) 7 cm² / 7 सेमी² (d) 10 cm² / 10 सेमी²
Show answer
(b) 6 cm² / 6 सेमी² — s = (3+4+5)/2 = 6. Area = √[6(6−3)(6−4)(6−5)] = √[6×3×2×1] = √36 = 6 cm². / s = 6, क्षेत्रफल = √36 = 6 सेमी²। (This is a right triangle, confirmed by 1/2×3×4=6.) / (यह समकोण त्रिभुज है, 1/2×3×4=6 से सत्यापित।)
-
Fill in the blank: The semiperimeter of a triangle with sides a, b and c is s = _____. / रिक्त स्थान भरें: a, b और c भुजाओं वाले त्रिभुज का अर्ध-परिमाप s = _____ है।
Show answer
(a + b + c) / 2 — The semiperimeter is half the total perimeter of the triangle. / अर्ध-परिमाप त्रिभुज के कुल परिमाप का आधा होता है।
-
Fill in the blank: For a triangle with sides a, b, c, Heron's formula is applicable only if the sides satisfy the _____ inequality. / रिक्त स्थान भरें: a, b, c भुजाओं वाले त्रिभुज पर हेरॉन का सूत्र तभी लागू होता है जब भुजाएँ _____ असमानता को संतुष्ट करें।
Show answer
triangle (त्रिभुज) — The triangle inequality requires a+b>c, b+c>a and c+a>b; otherwise the expression under the square root would be zero or negative. / त्रिभुज असमानता के लिए a+b>c, b+c>a और c+a>b आवश्यक है; अन्यथा वर्गमूल के अंदर का मान शून्य या ऋणात्मक हो जाता है।
-
True or False: Heron's formula can only be used for right-angled triangles. / सत्य या असत्य: हेरॉन का सूत्र केवल समकोण त्रिभुज के लिए ही उपयोग किया जा सकता है।
Show answer
False / असत्य — Heron's formula works for any triangle (scalene, isosceles, equilateral, or right-angled) as long as the three side lengths are known and satisfy the triangle inequality. / हेरॉन का सूत्र किसी भी त्रिभुज के लिए कार्य करता है (विषमभुज, समद्विबाहु, समबाहु या समकोण) जब तीनों भुजाओं की लंबाई ज्ञात हो और त्रिभुज असमानता संतुष्ट हो।
-
Find the area of a triangle with sides 13 cm, 14 cm and 15 cm using Heron's formula. / हेरॉन के सूत्र का उपयोग करके 13 सेमी, 14 सेमी और 15 सेमी भुजाओं वाले त्रिभुज का क्षेत्रफल ज्ञात कीजिए।
Show answer
s = (13+14+15)/2 = 21 cm. / s = 21 सेमी। Area = √[21(21−13)(21−14)(21−15)] = √[21×8×7×6] = √7056 = 84 cm². / क्षेत्रफल = √7056 = 84 सेमी²।
-
For a triangle with area 84 cm² and semiperimeter 21 cm, find the inradius. / 84 सेमी² क्षेत्रफल और 21 सेमी अर्ध-परिमाप वाले त्रिभुज की अन्तःत्रिज्या ज्ञात कीजिए।
Show answer
Using the relation Area = r × s: r = Area / s = 84 / 21 = 4 cm. / संबंध क्षेत्रफल = r × s का उपयोग करके: r = 84 / 21 = 4 सेमी। So a circle of radius 4 cm can be inscribed inside this triangle. / अतः 4 सेमी त्रिज्या का वृत्त इस त्रिभुज के अंदर अंकित किया जा सकता है।
Related Laws & Principles
Explore allFoundational laws & principles connected to this chapter — tap to open in the Laws Explorer.