Finding A Triangle

How To Find One Side Of A Triangle

PL
mymoviehits.com
7 min read
How To Find One Side Of A Triangle
How To Find One Side Of A Triangle

You’re staring at a triangle. You know two sides. Maybe you know an angle or two. And you need that third length — the one piece that makes the whole thing work.

It happens more often than you’d think. Because of that, helping a kid with homework. Cutting a rafter for a shed roof. Writing a collision detection script for a game prototype. The context changes, but the panic is the same: which formula do I use again?

Here’s the good news. There are only a few real scenarios. Once you recognize which one you’re in, the math mostly does itself.

What Is Finding a Triangle Side

At its core, you’re solving for an unknown length using the relationships locked inside the shape. That's why triangles are rigid. Change one side, and the angles have* to shift. Change an angle, and the sides stretch or shrink to match. That rigidity is exactly why we can calculate missing pieces at all.

The method depends entirely on what you already know. Special angles like 30° or 45°? On top of that, you get the easy tools — Pythagoras and basic trig. You graduate to the Law of Sines and the Law of Cosines. Oblique triangle (no 90° angle)? Right triangle? There are shortcuts that skip the calculator entirely.

It’s not one formula. It’s a decision tree.

Why It Matters

Skip the "real world applications" lecture. Plus, you know why it matters. You’re either graded on it, paid to get it right, or stuck on a project until you figure it out.

But here’s what most tutorials miss: *the error compounds.Even so, ** If you pick the wrong law — say, using Law of Sines on a Side-Side-Angle case without checking the ambiguous case — you don’t just get a wrong answer. On top of that, you get a plausible wrong answer. The kind that looks right until the roof leaks or the simulation explodes.

Knowing which* tool fits which* given information is the actual skill. The arithmetic is just typing.

How It Works

Right triangles: Pythagorean theorem

This is the one everyone remembers. And $a^2 + b^2 = c^2$. It works only* when you have a 90° angle and you know the other two sides.

$c$ is the hypotenuse — the side opposite the right angle. Think about it: it’s always the longest side. If you’re solving for a leg, rearrange: $a = \sqrt{c^2 - b^2}$.

Common trap: forgetting to square before subtracting. Plus, $c^2 - b^2$ is not $(c - b)^2$. On top of that, i’ve seen that mistake on job sites. It doesn’t end well.

Right triangles: SOH CAH TOA

You have one side and one acute angle. Now you need a different side. This is where trig earns its keep.

  • Sine = Opposite / Hypotenuse
  • Cosine = Adjacent / Hypotenuse
  • Tangent = Opposite / Adjacent

Pick the ratio that uses the side you have* and the side you need*. Solve for the unknown.

Example: You know the angle is 30° and the adjacent side is 10. You want the opposite side. $\tan(30°) = \frac{\text{opposite}}{10}$ $\text{opposite} = 10 \times \tan(30°) \approx 5.

Critical habit: Check your calculator mode. Degrees vs. radians. Every semester, someone computes $\sin(30)$ in radian mode and gets -0.988 instead of 0.5. The answer looks like a number. It’s just the wrong number.

Non-right triangles: Law of Sines

$\frac{a}{\sin A} = \frac{b}{\sin B} = \frac{c}{\sin C}$

Use this when you know:

  • Two angles and any side (AAS or ASA) — easy, find the third angle first ($180° - \text{sum of known}$), then plug in.
  • Two sides and a non-included* angle (SSA) — this is the ambiguous case.

The ambiguous case is where people get burned. Given side $a$, side $b$, and angle $A$, there can be:

  • Zero triangles (if $a < b \sin A$)
  • One right triangle (if $a = b \sin A$)
  • Two possible triangles (if $b \sin A < a < b$)
  • One triangle (if $a \ge b$)

If you’re in SSA territory, always check for a second solution. The supplement of your found angle ($180° - B$) might also work. Consider this: sketch it. The sketch tells you what the algebra hides.

Non-right triangles: Law of Cosines

$c^2 = a^2 + b^2 - 2ab \cos C$

This is your heavy lifter. Use it when you have:

  • Two sides and the included* angle (SAS) — solve directly for the third side.
  • Three sides (SSS) — solve for an angle first, then switch to Law of Sines for the rest.

It’s Pythagoras with

Want to learn more? We recommend how many days until august 16 and how to calculate blood alcohol level for further reading.

a correction factor for non-right angles. When $C = 90°$, $\cos C = 0$ and the last term vanishes, leaving you with $a^2 + b^2 = c^2$.

SAS workflow: You know sides $a$, $b$ and the angle $C$ between them.

  1. Compute $c^2 = a^2 + b^2 - 2ab \cos C$.
  2. Take the square root for side $c$.
  3. Now you have three sides. Use Law of Sines to find angle $A$ or $B$ (pick the smaller side to avoid the ambiguous case).
  4. Subtract from 180° for the last angle.

SSS workflow: You know $a$, $b$, $c$. No angles.

  1. Solve for the largest* angle first (opposite the longest side) using $\cos C = \frac{a^2 + b^2 - c^2}{2ab}$.
    • Why largest? Because the Law of Cosines handles obtuse angles cleanly—$\cos$ is negative past 90°, giving you an angle > 90° directly. Law of Sines only returns acute angles (calculator gives $\sin^{-1} \le 90°$), forcing you to guess if the angle is actually obtuse.
  2. Use Law of Sines for a second angle.
  3. Subtract from 180° for the third.

Area: The Forgotten Deliverable

Clients don’t always want angles. Sometimes they want square footage for concrete, sod, or roofing.

Right triangle: $A = \frac{1}{2} \times \text{leg}_1 \times \text{leg}_2$. Easy.

Any triangle (SAS): $A = \frac{1}{2}ab \sin C$. Two sides and the included angle. No need to find the third side or the height. Plug and chug.

Any triangle (SSS): Heron’s Formula. $s = \frac{a+b+c}{2}$ (semi-perimeter) $A = \sqrt{s(s-a)(s-b)(s-c)}$ It looks archaic. It’s numerically unstable for needle-thin triangles on floating-point hardware. But for field work with measured lengths? It’s bulletproof. You have the three sides from the tape measure; you get the area without ever touching an angle function.


The Real Workflow: A Decision Tree

Stop memorizing formulas in isolation. Memorize the triage*.

  1. Is there a right angle?

    • Yes: Pythagoras (2 sides known) or SOH CAH TOA (1 side + 1 acute angle known).
    • No: Go to 2.2. What do you know?
    • Two angles + any side (AAS/ASA): Sum angles to 180° → Law of Sines.
    • Two sides + included angle (SAS): Law of Cosines for 3rd side → Law of Sines for angles (use smaller side).
    • Three sides (SSS): Law of Cosines for largest* angle → Law of Sines for 2nd angle → 180° for 3rd.
    • Two sides + non-included angle (SSA): Law of Sines → Check Ambiguous Case (0, 1, or 2 solutions). Sketch it.
  2. Need Area?

    • SAS → $\frac{1}{2}ab\sin C$.
    • SSS → Heron’s.
    • Right → $\frac{1}{2} \text{leg}^2$.

The Discipline That Separates Pros from Amateurs

You will be tempted to skip the sketch. Don’t.

A thirty-second diagram—stick figure, labeled sides, labeled angles, right-angle marker if it exists—catches the "radians vs. degrees" error, the "hypotenuse vs. Still, leg" confusion, and the ambiguous-case phantom solution before they hit the calculator. The sketch is where you decide which* tool reaches for. The calculator only does the arithmetic.

Check your work against geometry intuition:

  • Longest side opposite largest angle?
  • Sum of angles = 180° (or $\pi$ radians)?
  • Triangle Inequality: sum of any two sides > third side?
  • Does the area make sense for the footprint?

If the numbers violate the sketch, the numbers are wrong. It doesn’t matter how many decimal places the calculator gave you.

The math is deterministic. The selection* of the math is judgment. That judgment—built on a clear sketch and a cold read of the given data—is what keeps the roof dry and the simulation running.

New

Latest Posts

Related

Related Posts

Thank you for reading about How To Find One 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.