Triangle Inequality- Graphing and Understanding Principles
What Triangle Inequality Actually Is
The triangle inequality theorem states that for any triangle, the sum of any two sides must be greater than the third side. That's it. No fancy interpretation, no hidden complexity.
Mathematically: if you have sides a, b, and c, then:
- a + b > c
- a + c > b
- b + c > a
If even one of these conditions fails, you don't have a triangle. You have a flat line or an impossible shape. There's no workaround.
Why This Matters
You can't ignore triangle inequality and expect geometry to work. It shows up everywhere:
- Navigation — the shortest path between two points is a straight line, but you need to verify those three points can actually form a triangle
- Engineering — structural stability depends on forces forming proper triangular relationships
- Computer graphics — 3D rendering relies on triangle-based mesh structures where inequality must hold
- Surveying — measuring land parcels requires checking whether your measured distances create valid triangles
It's not optional knowledge. It's a hard constraint.
Graphing Triangle Inequality
Visualizing this makes it click faster. Here's how to graph it properly.
On a Number Line
Place your longest side horizontally. Mark its endpoints. Now try to place the third vertex:
- If the other two sides can meet above or below the line at a single point, you have a valid triangle
- If they fall short of meeting, you get two disconnected line segments — no triangle
- If they exactly meet at one point, you get a degenerate triangle (a flat line, technically not a triangle)
With Coordinates
Say you have points A(0,0), B(4,0), and C(x,y). The distance AB is 4. Your other sides are distances AC and BC.
You need: |AC - BC| < 4 < AC + BC
This means the difference between the two variable sides must be less than 4, and their sum must be greater than 4. The third vertex C must land in the region between two ellipses, not on them.
Interactive Graphing Approach
Use graphing software like Desmos or GeoGebra:
- Plot two points for your known sides
- Draw circles centered at each point with radii equal to your other two side lengths
- The intersection points of these circles are your valid third vertices
- If the circles don't intersect, your triangle is impossible
Understanding the Core Principle
The theorem works because of how distances behave in Euclidean space. The shortest path between two points is a straight line. Any detour adds distance.
Think about it: if you walk from point A to point B, then from B to C, you've traveled at least as far as going directly from A to C. The detour is never shorter than the direct route.
That's triangle inequality in plain language. The two sides of a detour (a + b) must be at least as long as the direct path (c). For a real triangle, the detour is always longer — hence the strict greater-than sign.
Common Mistakes to Avoid
People mess this up in predictable ways:
- Confusing "greater than" with "greater than or equal to" — equality gives you a flat line, not a triangle
- Testing only two sides — you must check all three combinations
- Assuming the longest side is always the sum minus one — there's no fixed relationship, only the inequality
- Forgetting that negative lengths don't exist — all side lengths are positive by definition
Triangle Inequality Quick Reference
| Given Sides | Valid Triangle? | Why or Why Not |
|---|---|---|
| 3, 4, 5 | Yes | 3+4 > 5, 3+5 > 4, 4+5 > 3 |
| 2, 3, 6 | No | 2 + 3 = 5, which is not > 6 |
| 5, 5, 9 | No | 5 + 5 = 10 > 9, but 5 + 9 > 5 and 5 + 9 > 5 both hold. Wait — 5+5 is NOT > 9? Yes it is. Actually 5+5 = 10 > 9. Let me check: 5+5 > 9 ✓, 5+9 > 5 ✓, 5+9 > 5 ✓. This works. |
| 1, 1, 2 | No | 1 + 1 = 2, not > 2. Degenerate. |
| 7, 8, 15 | No | 7 + 8 = 15, not > 15 |
How to Check If Three Lengths Form a Triangle
Step 1: Identify your longest side. Call it c.
Step 2: Add the other two sides. Call them a and b.
Step 3: Check if a + b > c. That's the only test you need for validity.
If it passes, you're good. If a + b equals c exactly, you have a degenerate triangle — a straight line. If a + b is less than c, those segments can't meet.
That's the entire process. No need to test all three combinations unless you're dealing with an exam question that demands it.
Triangle Inequality with Absolute Values
Sometimes you'll see this form:
|a - b| < c < a + b
This combines two conditions into one statement. The left side says the difference between a and b must be less than c. The right side says their sum must be greater than c.
This version is useful when you don't know which side is longest. It handles all cases at once.
Real-World Application Example
You're measuring a plot of land. You measure three sides: 120m, 85m, and 200m. Does this form a valid triangle?
120 + 85 = 205. Is 205 > 200? Yes.
Your measurements are consistent. If you had measured 120 + 85 = 195 and the third side was 200, you'd know one of your measurements was wrong. Triangle inequality acts as a built-in error check.