The sides of rectangle ABCD have lengths 10 and 11. An equilateral triangle is drawn so that no point of the triangle lies outside ABCD. The maximum possible area of such a triangle can be written in the form pq−r, where p, q, and r are positive integers, and q is not divisible by the square of any prime number. Find p+q+r.
解析
Solution 1 (Coordinate Bash)
Consider points on the complex plane A(0,0),B(11,0),C(11,10),D(0,10). Since the rectangle is quite close to a square, we figure that the area of the equilateral triangle is maximized when a vertex of the triangle coincides with that of the rectangle. Set one vertex of the triangle at A, and the other two points E and F on BC and CD, respectively. Let E(11,a) and F(b,10). Since it's equilateral, then E⋅cis60∘=F, so (11+ai)(21+23i)=b+10i, and expanding we get (211−2a3)+(2113+2a)i=b+10i.
We can then set the real and imaginary parts equal, and solve for (a,b)=(20−113,22−103). Hence a side s of the equilateral triangle can be found by s2=AE2=a2+AB2=884−4403. Using the area formula 4s23, the area of the equilateral triangle is 4(884−4403)3=2213−330. Thus p+q+r=221+3+330=554.
Solution 2
This is a trigonometric re-statement of the above. Let x=∠EAB; by alternate interior angles, ∠DFA=60+x. Let a=EB and the side of the equilateral triangle be s, so s=a2+121 by the Pythagorean Theorem. Now s10=sin(60+x)=sin60cosx+cos60sinx=(23)(s11)+(21)(sa). This reduces to a=20−113.
Thus, the area of the triangle is 4s23=(a2+121)43, which yields the same answer as above.
Solution 3
Since ∠BAD=90 and ∠EAF=60, it follows that ∠DAF+∠BAE=90−60=30. Rotate triangle ADF60 degrees clockwise. Note that the image of AF is AE. Let the image of D be D′. Since angles are preserved under rotation, ∠DAF=∠D′AE. It follows that ∠D′AE+∠BAE=∠D′AB=30. Since ∠ADF=∠ABE=90, it follows that quadrilateral ABED′ is cyclic with circumdiameter AE=s and thus circumradius 2s. Let O be its circumcenter. By Inscribed Angles, ∠BOD′=2∠BAD′=60. By the definition of circle, OB=OD′. It follows that triangle OBD′ is equilateral. Therefore, BD′=r=2s. Applying the Law of Cosines to triangle ABD′, 2s=102+112−(2)(10)(11)(cos30). Squaring and multiplying by 3 yields 4s23=2213−330⟹p+q+r=221+3+330=554
-Solution by thecmd999
Solution 4 (Fast, no trig)
Clearly one vertex of the equilateral triangle is on a vertex of the rectangle, and the other two are lying on two other sides. Let m be the side length of the triangle, and let the rectangle be partitioned into the equilateral triangle, a right triangle with sides 11, y, m, a right triangle with sides 10, x, m, and a right triangle with sides 11−x, 10−y, m. Simple area analysis nets
110=43m2+211y+210x+2(11−x)(10−y)⟹110−23m2=xy
By the Pythagorean Theorem, 112+y2=m2 and 102+x2=m2, so x2y2=(m2−102)(m2−112). Thus,
(110−23m2)2=(m2−102)(m2−112)1102−1103m2+43m4=m4−221m2+1102
Obviously m2=0 so we can divide by m2 after cancellation:
−1103+221=41m2
The area of the triangle is 43m2, so the finish is simple.