Finding The Third

How To Find A Third Side Of A Triangle

PL
mymoviehits.com
6 min read
How To Find A Third Side Of A Triangle
How To Find A Third Side Of A Triangle

You're staring at a triangle. You know two sides. Maybe you know an angle. Here's the thing — maybe you don't. And you need that third length — now.

It happens more often than you'd think. Still, writing a collision detection routine for a game prototype. Cutting a piece of trim for a weird corner in the living room. Helping a kid with geometry homework. The triangle is the simplest polygon, sure, but "simple" doesn't always mean "obvious.

Let's sort out exactly how to find that missing side, depending on what you actually have to work with.

What Is Finding the Third Side of a Triangle

At its core, this is just solving for an unknown length in a three-sided figure. But the method changes completely based on which* pieces you're holding.

You might have:

  • Two sides and the angle between them (SAS)
  • Two angles and one side (AAS or ASA)
  • Two sides and an angle not between them (SSA — the tricky one)
  • Three angles (impossible to solve for length, only shape)
  • Two sides of a right triangle (hello, Pythagoras)

The triangle itself doesn't care. It just exists. Your job is matching the right tool to the information you've got.

Why It Matters / Why People Care

Triangles are the structural backbone of, well, everything.

Roof trusses? Triangles. Bridge supports? Triangles. The 3D mesh making up the character you're controlling in a video game? Millions of triangles. GPS triangulation? Literally in the name.

If you're building a ramp, you need the hypotenuse to cut the stringer correctly. If you're laying out a garden bed with a specific angle, the third side determines how much edging to buy. In code, calculating distance between two points in 2D space is solving for the hypotenuse of a right triangle formed by the x and y deltas.

Getting it wrong doesn't just mean a red mark on a quiz. It means wasted lumber, a wobbly shelf, or a physics engine that lets players walk through walls.

How It Works (or How to Do It)

The method depends entirely on your knowns. Here's the breakdown.

Right Triangles: Pythagorean Theorem

This is the one everyone remembers from school. a² + b² = c².

Condition:* You have a 90° angle. You know the two legs (a and b), or one leg and the hypotenuse (c).

If you have the legs: c = √(a² + b²)
If you have the hypotenuse and one leg: a = √(c² - b²)

Real talk: this only works for right triangles. " Not "looks square.Not "almost right.That's why " Exactly 90°. If you're framing a wall, check the corner with a speed square or the 3-4-5 method before you trust the math.

Two Sides and the Included Angle (SAS): Law of Cosines

This is the workhorse for non-right triangles. Now, you know side a, side b, and the angle C between them. You want side c.

c² = a² + b² - 2ab cos(C)

Notice the structure? It's Pythagoras with a correction factor. When C = 90°, cos(C) = 0, and the last term vanishes. You get Pythagoras back. That's not a coincidence — the Law of Cosines generalizes* the Pythagorean theorem.

Example: Side a = 8, side b = 10, angle C = 60°.
c² = 64 + 100 - 2(8)(10)(0.5)
c² = 164 - 80 = 84
c = √84 ≈ 9.17

Calculator check: make sure you're in degree mode, not radians. That single setting ruins more calculations than anything else.

Two Angles and a Side (AAS / ASA): Law of Sines

You know two angles and one side. Which means first step: find the third angle. Triangle angles always sum to 180°.

Angle C = 180° - Angle A - Angle B

If you found this helpful, you might also enjoy square footage calculator with feet and inches or 1 2 3 5 in fraction.

Now you have all three angles and one side. Use the Law of Sines:

a / sin(A) = b / sin(B) = c / sin(C)

Rearrange for your unknown. If you know side a and want side c:

c = a * sin(C) / sin(A)

This is clean, fast, and avoids the ambiguous case (mostly). Just watch your rounding — carry extra decimals until the final answer.

Two Sides and a Non-Included Angle (SSA): The Ambiguous Case

This is where people get burned.

You know side a, side b, and angle A (opposite side a). You want side c (or angle C).

Start with Law of Sines to find angle B:

sin(B) = b * sin(A) / a

Here's the trap: sine is positive in both* Quadrant I and Quadrant II. So B could be acute or obtuse. Two possible triangles. Sometimes one. Sometimes zero (if sin(B) > 1).

Checklist for SSA:

  1. Calculate h = b * sin(A) — the altitude from the known angle.
  2. If a < h: No triangle exists. Side a is too short to reach the base.
  3. If a = h: One right triangle. Side a just grazes the base.
  4. If h < a < b: Two possible triangles. Swing side a left or right.
  5. If a ≥ b: One triangle. Side a is long enough to only hit one way.

If you're coding this, you must* handle the two-solution case explicitly. Don't just take arcsin and move on.

Special Right Triangles: Short

Special Right Triangles: Short

In geometry, a few right triangles possess fixed angle measures that generate clean, memorable ratios. The two most frequently used are the 45°‑45°‑90° triangle and the 30°‑60°‑90° triangle.

45°‑45°‑90° triangle
Both acute angles are equal, so the legs are congruent. If each leg has length x, the hypotenuse stretches to x √2*. This relationship lets you convert a leg length into the hypotenuse (or vice‑versa) with a single multiplication or division, eliminating the need for a calculator.

Example:* A leg measuring 7 units yields a hypotenuse of 7 √2 ≈ 9.90 units.

30°‑60°‑90° triangle
The side opposite the 30° angle is the shortest. Call its length x. The side opposite the 60° angle is x √3*, and the hypotenuse equals 2x. These proportions let you determine any missing side when one side is known, again without resorting to trigonometric functions.

Example:* If the short leg is 4 units, the long leg is 4 √3 ≈ 6.93 units, and the hypotenuse is 8 units.

Because the angle measures are fixed, the ratios remain constant regardless of scale. Memorizing the two simple expressions — leg × √2* for the 45°‑45°‑90° case and short leg × √3* and 2 × short leg for the 30°‑60°‑90° case — provides a rapid mental check for many practical problems, from laying out a square floor to determining the slope of a roof.


Conclusion

The toolkit presented — Pythagorean theorem for right triangles, the Law of Cosines for any triangle with two sides and the included angle, the Law of Sines for configurations involving two angles and a side, and the nuanced handling of the ambiguous SSA scenario — covers virtually every triangle problem you’ll meet in real‑world applications. Complementing these general formulas, the special right triangles supply quick, exact solutions when their angle patterns match the situation.

Mastery comes from recognizing which relationship applies, verifying that the given data fit the required conditions, and applying the appropriate formula with care for units and rounding. Here's the thing — with practice, the decision‑making process becomes instinctive, allowing you to move swiftly from raw measurements to precise answers. Keep these concepts handy, and you’ll find geometry a reliable partner in any construction, design, or mathematical endeavor.

New

Latest Posts

Related

Related Posts

Thank you for reading about How To Find A Third Side Of A Triangle. We hope this guide was helpful.

Share This Article

X Facebook WhatsApp
← Back to Home
MY

mymoviehits

Staff writer at mymoviehits.com. We publish practical guides and insights to help you stay informed and make better decisions.