A box contains 5 rods whose lengths make triangles.

76 Views Asked by At

A box contains five rods whose lengths are 1", 3", 6", 10", 15". How many different obtuse triangles can be made using only three rods at a time.

I determined that the answer is 1 because the triangle inequality nullified the others without using the Pythagorean inequalities. I feel like brute force and a bit of the triangle inequality is need the only way to solve this. Is there a more efficient way of solving it?

2

There are 2 best solutions below

0
On

The smallest length can't be $1$ because all bigger lengths differ by more than $1$.

The smallest length can't be $3$ because all bigger lengths differ by more than $3$.

The only possibility is therefore $6,10,15$ and it works, since $6+10<15$ and $36+100<225$.

0
On

You just need the triangle inequality (as you say) to get the one viable triangle and then check that $a^2 + b^2 < c^2$ to see if you have an obtuse triangle. You're choosing $3$ from $5$ so there are only ${3 \choose 5 } = 10$ options.

\begin{array}{c|c|c} a & b & c & TI & \text{obtuse}\\ 1 & \text{any} & \text{any} & \color{red} \times\\ 3 & 6/10 & 10/15 & \color{red} \times \\ 6 & 10 & 15 & Y & 36+100 < 225 \quad \color{blue} \checkmark\\ \end{array}