返回题库

AIME 2026 II · 第 6 题

AIME 2026 II — Problem 6

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find the sum of all real numbers rr such that there is at least one point where the circle with radius rr centered at (4,39)(4,39) is tangent to the parabola with equation 2y=x28x+122y=x^2-8x+12.

解析

Solution 1

The parabola has equation y=12(x2)(x6)y=\frac{1}{2}(x-2)(x-6), which has vertex (4,2)(4,-2) and axis of symmetry x=4x=4. Suppose the circle is tangent to the parabola at a point (a,b)(a,b). Note that the slope of the tangent line to the parabola at (a,b)(a,b) has slope y=a4y'=a-4. In the case where a=4a=4 (b=2b=-2), this tangent is horizontal and r=41r=41 is the only real number that works.

Assume a4a\neq 4. The line between (4,39)(4,39) and (a,b)(a,b) must be perpendicular to the tangent line of slope a4a-4, so it turns out that

b39a4=1a4\frac{b-39}{a-4} = -\frac{1}{a-4} and b=38b=38. Solving, we find a=4±45a=4\pm 4\sqrt{5}, and we have

r=1+(±45)2=9.r = \sqrt{1+(\pm4\sqrt{5})^2} = 9. The only working real numbers are 4141 and 99, and they have sum 050\boxed{050}. ~TThB0501

Solution 2

We start with the parabola 2y=x28x+122y = x^2 - 8x + 12, which can be rewritten in vertex form as:

y=12(x4)22.y = \frac{1}{2}(x - 4)^2 - 2. The vertex of the parabola is at (4,2)(4, -2).

The circle is centered at (4,39)(4, 39) with radius rr, so its equation is:

(x4)2+(y39)2=r2.(x - 4)^2 + (y - 39)^2 = r^2. First, we note an obvious case: the distance from the center (4,39)(4, 39) to the vertex (4,2)(4, -2) of the parabola is 39(2)=4139 - (-2) = 41. Thus, r=41r = 41 is a solution where the circle is tangent to the parabola at its vertex.

Next, we consider the general case by substituting the parabola equation into the circle equation. From 2y=x28x+122y = x^2 - 8x + 12, we have x28x=2y12x^2 - 8x = 2y - 12. Substituting this into the circle equation gives:

(x28x+16)+(y39)2=r2,(x^2 - 8x + 16) + (y - 39)^2 = r^2, (2y12+16)+y278y+392=r2,(2y - 12 + 16) + y^2 - 78y + 39^2 = r^2, y276y+(392+4r2)=0.y^2 - 76y + (39^2 + 4 - r^2) = 0. For the circle and parabola to be tangent, this quadratic equation in yy must have exactly one solution, so its discriminant must be zero:

Δ=(76)241(392+4r2)=0.\Delta = (-76)^2 - 4 \cdot 1 \cdot (39^2 + 4 - r^2) = 0. We calculate the discriminant:

7624(392+4r2)=0,76^2 - 4(39^2 + 4 - r^2) = 0, 382(392+4r2)=0,38^2 - (39^2 + 4 - r^2) = 0, r2=392+4382.r^2 = 39^2 + 4 - 38^2. Using the difference of squares a2b2=(ab)(a+b)a^2 - b^2 = (a - b)(a + b):

r2=(3938)(39+38)+4=177+4=81,r^2 = (39 - 38)(39 + 38) + 4 = 1 \cdot 77 + 4 = 81, r=9.r = 9. Thus, the real numbers rr are 99 and 4141. The sum of all such rr is:

9+41=050.9 + 41 = \boxed{050}. ~Steven Zheng

Solution 3

We first substitute 2y=x28x+122y = x^2 - 8x + 12 into the circle (x4)2+(y39)2=r2(x-4)^2 + (y-39)^2 = r^2:

(x4)2+(12x24x33)2=r2(x-4)^2 + (\frac{1}{2}x^2-4x-33)^2 = r^2 .

x28x+16+14x44x317x2+264x+1089=r2x^2-8x+16 + \frac{1}{4}x^4-4x^3-17x^2+264x+1089 = r^2 14x44x316x2+256x+1105r2=0\frac{1}{4}x^4-4x^3-16x^2+256x+1105-r^2=0 Since we are finding the tangent points, we should find the values of r so that the yy values of the critical points is 00. We know that the function would not go through the xx axis at the critical point, since we can imagine the circle expanding to the parabola, and the tangency point would not cross the parabola, either the circle tangency completely being in the parabola, or completely outside. Since we are finding the tangency point, we can take the derivative of 14x44x316x2+256x+1105r2\frac{1}{4}x^4-4x^3-16x^2+256x+1105-r^2:

ddx(14x44x316x2+256x+1105r2)\frac{d}{dx}(\frac{1}{4}x^4-4x^3-16x^2+256x+1105-r^2) =x312x232x+256=x^3-12x^2-32x+256 Using Rational Root Theorem, we can factor the expression to get (x4)(x28x64)(x-4)(x^2-8x-64). The solutions are x=4,x=4+45,x=4,x=4+4\sqrt5, and x=445x=4-4\sqrt5. Now we plug in the numbers back into 14x44x316x2+256x+1105r2=0\frac{1}{4}x^4-4x^3-16x^2+256x+1105-r^2=0.

  • Plug in x=4x=4 we get 1681r2=01681-r^2=0, so r=41r=41.
  • Plug in x=4±45x=4\pm 4\sqrt5 we get 81r2=081-r^2=0, so r=9r=9. (they are the same because it's symmetrical, the AoS passes through the center of circle)

Solution is 9+41=0509+41=\boxed{050}

~TheRealMee

Solution 4 (Not a great solution, but simple)

Since the center of the circle is (4,39),(4,39), we know that the circle must be in the form (x4)2+(y39)2=r2.(x-4)^2+(y-39)^2=r^2. The vertex of the parabola 2y=x28x+122y=x^2-8x+12 is (4,2),(4,-2), so the circle must have a radius of 39(2)=4139-(-2)=41 to be tangent to the vertex. Since the line from a circle's center to a tangent is always perpendicular to that tangent, and the slope of the parabola is very close to a vertical line as xx becomes further from 4,4, we can find the xx-value of the horizontal line from the circle's center to where it intersects the parabola. This means that the xx-value of the position where the parabola reaches 3939 is a great estimate for the xx-value of the tangent point. Plugging 3939 in for y,y, we get that the xx value is equal to 4±82.4\pm{\sqrt{82}}. This means that the radius of the circle must be very close to 82.\sqrt{82}. Since the radius must be an integer since this is an AIME problem, we find that 9=81,9=\sqrt{81}, giving 99 as a second radius. Adding these two values up, 41+9=50,41+9=50, so our answer is 50.\boxed{50}.

~Nodskin Goble (feel free to change the wording of this solution)