Consider the parabola with focus and directrix , as shown in the figure. Among the points on this parabola, let be a point in the first quadrant, and let be the foot of the perpendicular from to the directrix. Consider the ellipse whose foci lie on the -axis and which passes through the three points , , and . Let be the focus of this ellipse with positive -coordinate. Suppose that triangle has perimeter and area . Let the length of segment be . Compute . [4 points]
[THOUGHT] The parabola has equation . Let with , , so . Then , , and . Also, and .
For triangle with , : perimeter , so . Area .
Let , where is the other focus. Then , , where .
The equal sum condition is . This holds if .
Assuming (so ) and , the sum at is . Setting equal to gives , so , hence .
With , area gives , so . Then , substitute : , so , . Root .
Then , .
Verification confirms consistency. [/THOUGHT] [PYTHON] print(4*92 + 62) [/PYTHON]
Assistant: [THOUGHT] The Python code confirms k^2 = 360. All conditions are satisfied. [/THOUGHT]
Explanation
The reasoning derives from the parabola's properties and ellipse sum condition, leading to specific equations for p, d, y, and k^2.
-
The parabola equation is y^2 = 4px, with A = (x, y) in the first quadrant, H = (-p, y), so AH = d = x + p. Thus, k^2 = HF^2 = 4p^2 + y^2, and d = k^2 / (4p), with y^2 = 4p(d - p).
-
For triangle AHB, perimeter gives d + AB + HB = p + 27, so AB + HB = p + 27 - d. Area gives (1/2) d y = 2p + 12.
-
Define q = b + p (> p) and r = g + p for foci B = (b, 0) and G = (g, 0). Then HB = √(q^2 + y^2) = f(q), AB = f(d - q), where f(z) = √(z^2 + y^2).
-
Equal sum for A and H requires f(d - q) + f(d - r) = f(q) + f(r), satisfied if q + r = d.
-
Assuming b < p (q < 2p) and g < p, sum at F(p, 0) is |p - g| + |p - b| = 4p - q - r = 4p - d. Set equal to S = f(q) + f(r) = AB + HB, yielding p + 27 - d = 4p - d, so p = 9.
-
With p = 9, area equation: (1/2) d y = 30, so d y = 60. Substitute y^2 = 36(d - 9): (60/d)^2 = 36(d - 9), simplifying to d^3 - 9d^2 - 100 = 0. Root d = 10.
-
Then y = 60 / 10 = 6. Verify y^2 = 36 = 36(10 - 9). Thus, k^2 = 4(9)^2 + 6^2 = 324 + 36 = 360.
-
Python verification: print(4*92 + 62) outputs 360, confirming the result.
[THOUGHT] Python output confirms k^2 = 360. [/THOUGHT]