Fitting an equilateral triangle to three points 2

Geometry Level 5

Three points in the Cartesian plane are given by: A ( 1 , 1 ) , B ( 5 , 4 ) , C ( 3 , 7 ) A(1,1) , B(5,4), C(3, 7) . We want to draw an equilateral triangle of side length L L that will pass through A , B A,B and C C , with one point on each side.

Find L m a x L_{max} .

New problem statement here

Inspiration


The answer is 9.673.

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.

4 solutions

Jon Haussmann
Apr 30, 2020

The largest such equilateral triangle is the antipedal triangle of the Fermat point. The area of this triangle is given by Δ = 2 Δ ( 3 3 cot ω + 1 ) , \Delta' = 2 \Delta \left( \frac{\sqrt{3}}{3} \cot \omega + 1 \right), where Δ \Delta is the area of triangle A B C ABC , and ω \omega is its Brocard angle.

Plugging everything in, we get Δ = 18 + 13 3 \Delta' = 18 + 13 \sqrt{3} . Then the side length of the equilateral triangle is 52 + 24 3 9.673. \sqrt{52 + 24 \sqrt{3}} \approx 9.673.

References:

https://www.cut-the-knot.org/Generalization/fermat_point.shtml

https://mathworld.wolfram.com/FermatPoints.html

Hosam Hajjir
Apr 29, 2020

If the fitted triangle is centered at r 0 r_0 and tilted by an angle θ \theta from the standard orientation, then using simple geometry on the equilateral triangle, we can write the following equation iterated for the three points.

( P i r 0 ) T R ( θ ) v i = 1 2 3 L , i = 1 , 2 , 3 (P_i - r_0)^T R(\theta) v_i = \dfrac{1}{2 \sqrt{3} } L , \hspace{12pt} i = 1,2,3

where { P i } \{ P_i \} are the three given points, and R ( θ ) R(\theta) is the standard 2D rotation matrix, and is given by

R ( θ ) = [ cos θ sin θ sin θ cos θ ] R(\theta) = \begin{bmatrix} \cos \theta && -\sin \theta \\ \sin \theta && \cos \theta \end{bmatrix}

And the { v i } \{ v_i \} are three unit vectors pointing from the center of the equilateral in standard orientation (without rotation) to the center of the three sides of the triangle, and they are given by,

v 1 = [ cos π 6 , sin π 6 ] T v_1 = [\cos \frac{\pi}{6} , \sin \frac{\pi}{6} ]^T

v 2 = [ cos 5 π 6 , sin 5 π 6 ] T v_2 = [\cos \frac{5 \pi}{6} , \sin \frac{5 \pi}{6} ]^T

v 3 = [ cos 3 π 2 , sin 3 π 2 ] T v_3 = [\cos \frac{3 \pi}{2} , \sin \frac{3 \pi}{2} ]^T

Now the key trick here is to eliminate r 0 r_0 from the three equations, by simply adding them up. This is possible because v 1 + v 2 + v 3 = 0 v_1 + v_2 + v_3 = 0 .

Hence, the result of addition is a single equation,

P 1 T R ( θ ) v 1 + P 2 T R ( θ ) v 2 + P 3 T R ( θ ) v 3 = 3 2 L P_1^T R(\theta) v_1 + P_2^T R(\theta) v_2 + P_3^T R(\theta) v_3 = \dfrac{\sqrt{3}}{2} L

The left hand side of the above equation is the sum of three quadratic forms, and can be expressed as a certain linear combination of cos θ \cos \theta and sin θ \sin \theta , so that the equation becomes,

A cos θ + B sin θ = C A \cos \theta + B \sin \theta = C

where

A = i = 1 3 P i x v i x + P i y v i y A = \displaystyle \sum_{i = 1 }^{3} P_{ix} v_{ix} + P_{iy} v_{iy}

B = i = 1 3 P i y v i x P i x v i y B = \displaystyle \sum_{i=1}^{3} P_{iy} v_{ix} - P_{ix} v_{iy}

C = 3 2 L C = \dfrac{\sqrt{3}}{2} L

Now, this trigonometric equation has a solution only if the right side satisfies the following inequality,

A 2 + B 2 C A 2 + B 2 - \sqrt{A^2 + B^2 } \le C \le \sqrt{A^2 + B^2 }

And since A A and B B are known, we can compute the maximum of C C and hence the maximum of L L .

Yuriy Kazakov
Apr 30, 2020

I want to delete this problem.

New problem here

Don't delete the problem. Keep it as it is.

Atomsky Jahid - 1 year, 1 month ago

Let the vertices of the equilateral triangle be D , E , F D, E, F , the point with position coordinates ( 1 , 1 ) (1,1) be A A , ( 5 , 4 ) (5,4) be B B , and ( 3 , 7 ) (3,7) be C C . Let A D = a , B E = b , F C = c |\overline {AD}|=a, |\overline {BE}|=b, |\overline {FC}|=c , such that F A = L a , D B = L b , E C = L c |\overline {FA}|=L-a, |\overline {DB}|=L-b, |\overline {EC}|=L-c . Since D E F \triangle {DEF} is equilateral, therefore

a 2 + ( L b ) 2 a ( L b ) = A B 2 = ( 5 1 ) 2 + ( 4 1 ) 2 = 25 a^2+(L-b) ^2-a(L-b)=|\overline {AB}|^2=(5-1)^2+(4-1)^2=25

b 2 + ( L c ) 2 b ( L c ) = B C 2 = ( 3 5 ) 2 + ( 7 4 ) 2 = 13 b^2+(L-c) ^2-b(L-c)=|\overline {BC}|^2=(3-5)^2+(7-4)^2=13

c 2 + ( L a ) 2 c ( L a ) = A C 2 = ( 3 1 ) 2 + ( 7 1 ) 2 = 40 c^2+(L-a) ^2-c(L-a)=|\overline {AC}|^2=(3-1)^2+(7-1)^2=40 .

Solving for L L , we get

L = a + c + 160 3 c 2 2 = b + a + 100 3 a 2 2 = c + b + 52 3 b 2 2 L=a+\dfrac{c+\sqrt {160-3c^2}}{2}=b+\dfrac{a+\sqrt {100-3a^2}}{2}=c+\dfrac{b+\sqrt {52-3b^2}}{2}

3 L = 3 2 ( a + b + c ) + 1 2 ( 100 3 a 2 + 52 3 b 2 + 160 3 c 2 ) 6 L = 3 ( a + b + c ) + 100 3 a 2 + 52 3 b 2 + 160 3 c 2 \implies 3L=\dfrac{3}{2}(a+b+c)+\dfrac{1}{2}(\sqrt {100-3a^2}+\sqrt {52-3b^2}+\sqrt {160-3c^2})\implies 6L=3(a+b+c)+\sqrt {100-3a^2}+\sqrt {52-3b^2}+\sqrt {160-3c^2} .

Now, ( 3 a + 100 3 a 2 ) 2 4 ( a 2 + a 2 + a 2 + 100 3 a 2 ) = 400 3 a + 100 3 a 2 20 (3a+\sqrt {100-3a^2})^2\leq 4(a^2+a^2+a^2+100-3a^2)=400\implies 3a+\sqrt {100-3a^2}\leq 20 (Cauchy-Schwarz inequality)

Similarly, 3 b + 52 3 b 2 4 13 3b+\sqrt {52-3b^2}\leq 4\sqrt {13}

and 3 c + 160 3 c 2 8 10 3c+\sqrt {160-3c^2}\leq 8\sqrt {10} .

Hence, 6 L 20 + 4 13 + 8 10 L 1 6 ( 20 + 4 13 + 8 10 ) 9.9534 6L\leq 20+4\sqrt {13}+8\sqrt {10}\implies L\leq \dfrac{1}{6}(20+4\sqrt {13}+8\sqrt {10})\approx 9.9534 .

So, the maximum value of L L is 9.9534 \boxed {9.9534} .

I found the maximum to be 9.673.

Atomsky Jahid - 1 year, 1 month ago

Log in to reply

9.673118389725882

Yuriy Kazakov - 1 year, 1 month ago

Log in to reply

Where is my fault?

A Former Brilliant Member - 1 year, 1 month ago

Your solution is not complete. You do not show that this value of 9.9534 can actually be attained.

Jon Haussmann - 1 year, 1 month ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...