Check if three side lengths form a valid triangle. See all three inequality checks, surplus/deficit, triangle classification (acute/right/obtuse, scalene/isosceles/equilateral), area, and angles.
The triangle inequality theorem is one of the most fundamental results in geometry: for any three lengths to form a triangle, the sum of every pair must be strictly greater than the third. In symbols: a + b > c, a + c > b, and b + c > a. If any one of these fails, no triangle can be constructed.
This calculator checks all three inequalities simultaneously and reports the surplus (how much the sum exceeds the third side) or the deficit (how much more length is needed). When the sides are valid, it goes further — classifying the triangle by its angles (acute if a² + b² > c² for all orderings, right if equality holds, obtuse otherwise) and by its sides (equilateral, isosceles, or scalene).
For valid triangles, the calculator also computes the area (Heron's formula), all three angles (law of cosines), perimeter, circumradius (R), and inradius (r). For degenerate cases where a + b = c exactly (the three points are collinear), it warns that the "triangle" has zero area. For invalid cases, it shows exactly which inequality fails and by how much, helping you understand what would need to change.
The triangle inequality appears throughout mathematics and its applications — from metric spaces in analysis to network routing in computer science. In construction and engineering, checking whether three members can form a rigid triangle is a basic feasibility test. This tool makes that check instant.
This calculator is useful when you need more than a yes-or-no triangle check. It shows each inequality separately, measures the surplus or deficit, and then classifies the triangle only if the side set is actually valid. That makes it useful for classroom demonstrations, quick feasibility checks in design work, and debugging geometry problems where one side length might have been copied incorrectly.
Triangle inequality: a + b > c, a + c > b, b + c > a Angle test: acute if a²+b² > c² (all orderings), right if =, obtuse if < Side classification: equilateral (all equal), isosceles (two equal), scalene (all different) Area = √[s(s−a)(s−b)(s−c)] (Heron) Angles via law of cosines
Result: Valid triangle — Right Scalene. Area = 6, Angles ≈ 36.87°, 53.13°, 90°
Checks: 3+4=7>5 ✓, 3+5=8>4 ✓, 4+5=9>3 ✓. Angle test: 9+16=25=25 → right triangle. All sides different → scalene. Area = √(6·3·2·1) = 6.
A triangle only exists when every pairwise sum is strictly greater than the remaining side. Equality is not enough, because it collapses the figure into a straight segment with zero area. That strict comparison is why a set such as 3, 4, and 7 is not a thin triangle but a degenerate one, and why any smaller sum fails completely.
The most practical part of an inequality check is often not the pass or fail label but the margin. A positive surplus tells you how much room there is before the triangle would collapse, while a negative value tells you exactly how far the data is from being valid. This is useful when checking measurements from field work, CAD sketches, or hand calculations where rounding or transcription may have introduced an error.
Angle and side classification make sense only after the triangle inequality has passed. Once the figure is valid, the same side set can be analyzed further as acute, right, or obtuse and as equilateral, isosceles, or scalene. Keeping those stages separate is good mathematical hygiene: first prove the triangle can exist, then describe what kind of triangle it is.
It states that for any triangle with sides a, b, c: the sum of any two sides must be greater than the third side. All three conditions must hold: a+b>c, a+c>b, b+c>a.
The three points are collinear (on a straight line). This is called a degenerate triangle — it has zero area and no interior angles.
Sort sides so a ≤ b ≤ c. Compute a² + b² vs c². If a²+b² > c²: acute. If equal: right. If less: obtuse.
A triangle where all three sides have different lengths (and therefore all three angles are different). Use this as a practical reminder before finalizing the result.
No. 1 + 1 = 2, which is not greater than 3. The triangle inequality fails.
In construction, it determines whether three beams can form a rigid frame. In navigation, it constrains shortest-path distances. In computer science, it underpins metric-based search algorithms.