In a triangle with integer side lengths, one side is three times as long as a second side, and the length of the third side is 17. What is the greatest possible perimeter of the triangle?
There's probably some formula that could be set up, but I'm not that good. I have to try brute force.
All I know is, is that the sum of the lengths of two sides of a triangle must exceed the length of the third side.
33, as above, is good if we assume that 17 is the longest side. But what if it's not?
Here are some other triangles. I'll list 17 first in each case, since that side remains constant:
17, 5, 15 okay
17, 6, 18 okay
17, 7, 21 okay
17, 8, 24 okay
17, 9, 27 NOPE that won't work because 9 + 17 is not greater than 27.
So my conclusion is that the greatest possible perimeter is 49 units, in the 17, 8, 24 triangle.
.