Given a triangle with an area of 6 and a perimeter of 12. Find the maximum possible length of its side.
If this length is a root of the polynomial f ( x ) = x 3 + a x 2 + b x + c , submit f ( 2 ) .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Great job! The maximum possible length of its sides is equal to 2 + 4 cos ( 9 2 π ) ≈ 5 . 0 6 4 2 , while the other two shorter side lengths are both equal to 5 − 3 sin ( 9 π ) − cos ( 9 π ) ≈ 3 . 4 6 7 9 1
Here's my failed attempt:
Let A , B , C denote the side lengths of this triangle. We want to evaluate max ( A , B , C ) .
Using Heron's formula , we gather that 6 2 = 6 ( 6 − A ) ( 6 − B ) ( 6 − C ) ⇒ − A B C + 6 ( A B + A C + B C ) = 2 2 2 .
Then I got nothing.
What's interesting is that we convert this geometry question to a strictly algebraic question:
Let a , b , c be non-negative real numbers such that a + b + c = 1 2 and − a b c + 6 ( a b + a c + b c ) = 2 2 2 . Prove that max ( a , b , c ) = 2 + 4 cos ( 9 2 π ) .
In other words, when one of { a , b , c } is maximized, then a , b , c automatically becomes the side length of a triangle. So weird!
Problem Loading...
Note Loading...
Set Loading...
Let A B C be the triangle in question and x be the length of B C . We place the triangle on a coordinate system so that B ( − 2 x , 0 ) and C ( 2 x , 0 ) . Then, vertex A lies on an ellipse C with points B and C being its foci and the length of its major semi-axis being α = 2 1 ( A B + A C ) = 2 1 ( 1 2 − x ) = 6 − 2 x The length of the minor semi-axis of the ellipse is
β = a 2 − ( 2 x ) 2 = ( 6 − 2 x ) 2 − 4 x 2 = 3 6 − 6 x For the height h = A D of △ A B C we have [ A B C ] = 6 ⇒ 2 1 x h = 6 ⇒ h = x 1 2 Hence, vertex A lies on the line l with equation y = x 1 2 , ( x is constant).
We conclude that △ A B C exists iff the ellipse and the line do intersect, i.e when x 1 2 ≤ β ⇒ x 1 2 ≤ 3 6 − 6 x 2 ⇔ x > 0 x 2 1 4 4 ≤ 3 6 − 6 x 2 ⇔ x 3 − 6 x 2 + 2 4 ≤ 0 We can easily find that function f ( t ) = t 3 − 6 t 2 + 2 4 , t > 0 , is non negative in an interval [ x 1 , x 2 ] ⊆ ( 0 , 6 ) , with x 1 and x 2 being its zeros. Hence, the maximum value for the side x is x 2 , the greatest root of f .
For the answer, f ( 2 ) = 2 3 − 6 × 2 2 + 2 4 = 8 .