Last verified · v1.0
Calculator · math
Acute Triangle Calculator
Calculate area, angles, perimeter, and height of any acute triangle using Heron's Formula and the Law of Cosines. Enter three side lengths for instant results.
Inputs
Triangle Result
—
Explain my result
Get a plain-English breakdown of your result with practical next steps.
The formula
How the
result is
computed.
How the Acute Triangle Calculator Works
An acute triangle is a triangle in which every interior angle measures strictly less than 90 degrees. Unlike right triangles (one 90° angle) or obtuse triangles (one angle greater than 90°), acute triangles distribute their angles evenly below that threshold. This calculator determines whether three given side lengths form an acute triangle, then computes the area, interior angles, perimeter, and altitudes using two classical formulas: Heron's Formula and the Law of Cosines.
Acute Triangle Condition
Given sides a, b, and c where c is the longest side, the triangle is acute if and only if:
a² + b² > c²
This inequality follows directly from the Law of Cosines. If the condition equals c², the triangle is right; if a² + b² < c², the triangle is obtuse. For a triangle with sides 5, 6, and 7: 25 + 36 = 61 > 49, so the triangle is acute. The calculator identifies the longest side automatically before applying this test.
The Triangle Inequality Check
Before any further calculation, the three sides must satisfy the Triangle Inequality Theorem: each side must be shorter than the sum of the other two (a + b > c, a + c > b, b + c > a). A set of sides such as 1, 2, and 10 violates this — no triangle can be formed. The calculator verifies this condition and returns an error if it fails.
Semi-Perimeter and Heron's Formula
The area calculation begins with the semi-perimeter:
s = (a + b + c) / 2
For sides 5, 6, and 7: s = 18 / 2 = 9. The area then follows from Heron's Formula, attributed to Hero of Alexandria (circa 60 AD):
Area = √(s(s − a)(s − b)(s − c))
Substituting: Area = √(9 × 4 × 3 × 2) = √216 ≈ 14.70 square units. This formula requires only the three side lengths — no altitude or angle measurement is needed. For a larger example, an acute triangle with sides 7, 8, and 9 gives s = 12, Area = √(12 × 5 × 4 × 3) = √720 ≈ 26.83 square units.
Interior Angles via the Law of Cosines
The Law of Cosines, as documented by Texas A&M University, generalizes the Pythagorean theorem to any triangle:
cos(A) = (b² + c² − a²) / (2bc)
Applying the arccos function yields the angle. Each of the three angles is computed by cycling the formula:
- cos(A) = (b² + c² − a²) / (2bc) → angle A opposite side a
- cos(B) = (a² + c² − b²) / (2ac) → angle B opposite side b
- cos(C) = (a² + b² − c²) / (2ab) → angle C opposite side c
For the triangle with sides 5, 6, and 7: A ≈ 44.4°, B ≈ 57.1°, C ≈ 78.5°. These sum to 180° and all fall below 90°, confirming the acute classification. The GVSU ScholarWorks text on Triangles and Vectors demonstrates how this approach extends to navigation, physics force analysis, and engineering problems involving non-right triangles.
Perimeter and Altitude
The perimeter is simply P = a + b + c. For sides 5, 6, and 7, P = 18 units. The altitude (height) perpendicular to each side is derived from the area formula (Area = ½ × base × height), rearranged as:
h_a = 2 × Area / a
For side a = 5 with Area ≈ 14.70: h_a ≈ 5.88 units. The calculator outputs all three altitudes corresponding to each side.
Real-World Applications
Acute triangle geometry underpins a wide range of practical disciplines. Structural engineers design roof trusses and bridge supports as acute triangles to distribute compressive and tensile loads symmetrically. Forestry researchers apply triangulated measurements to estimate tree heights without climbing — a technique directly derived from the same Law of Cosines used here. Land surveyors calculate plot areas and boundary distances using Heron's Formula when only side measurements are available. In computer graphics and 3D rendering, complex surfaces are decomposed into acute triangles to improve mesh quality and reduce rendering artifacts. GPS triangulation and celestial navigation also rely on solving triangles with known side lengths, making these formulas foundational tools across science and engineering.
Reference