2025 AIME II Problems/Problem 15

Problem

There are exactly three positive real numbers $k$ such that the function \[f(x)=\frac{(x-18)(x-72)(x-98)(x-k)}{x}.\] defined over the positive real numbers achieves its minimum value at exactly two positive real numbers $x$. Find the sum of these three values of $k$.

Solution 1 ('clunky', trial and error)

Let $n$ be the minimum value of the expression (changes based on the value of $k$, however is a constant). Therefore we can say that f(x)n=(xα)2(xβ)2x This can be done because $n$ is a constant, and for the equation to be true in all $x$ the right side is also a quartic. The roots must also both be double, or else there is an even more 'minimum' value, setting contradiction.

We expand as follows, comparing coefficients:

(x18)(x72)(x98)(xk)nx=(xα)2(xβ)22α2β=187298kα+β=94+k2α2+4αβ+β2=(1872)+(1898)+(18k)+(7298)+(72k)+(98k)=10116+188k(α2)(β2)=(18)(72)(98)(k)αβ=2522k

Recall $(\alpha+\beta)^2+2\alpha \beta=\alpha^2+4\alpha \beta +\beta^2$, so we can equate and evaluate as follows:

(1)(94+k2)2+5042k=10116+188k (47k4)2+1262k=2529k216472k+1262k320=0

We now have a quartic with respect to $\sqrt{k}$. Keeping in mind it is much easier to guess the roots of a polynomial with integer coefficients, we set $a=\frac{k}{8}$. Now our equation becomes

4a2188a+504a320=0a247a+126a80=0

If you are lucky, you should find roots $\sqrt{a}=1$ and $2$. After this, solving the resulting quadratic gets you the remaining roots as $5$ and $8$. Working back through our substitution for $a$, we have generated values of $k$ as $(8, 32, 200, 512)$.

However, we are not finished, trying $k=512$ into the equation $(1)$ from earlier does not give us equality, thus it is an extraneous root. The sum of all $k$ then must be $8+32+200=\boxed{240}$.

~ lisztepos

~ Edited by aoum

Note: I'm not sure what the first author meant by "or else there is an even more 'minimum' value." The most noticeable reason there are two double roots is because there are two distinct positive solutions per the conditions of the problem

~ fermat_sLastAMC

Further notes (from the author): To clarify why the equation takes the form as above, if you do not regard the context of the problem, you could say that $\frac{(x-\alpha)^3(x-\beta)}{x}$ is another form, also having two roots. However when we consider this form, (WLOG assuming $\alpha < \beta$) if we take a value such that $\alpha < x < \beta$, then $x-\beta < 0$, therefore implying that $\frac{(x-\alpha)^3(x-\beta)}{x}<0$ or otherwise resulting $f(x)<n$, which is contradiction as we assumed $n$ is the least value of the function. Similarly logic proceeds if the third power is on the other binomial.

Solution 2 (AM-GM)

Consider this function f(x)=(x18)(x98)(x72)(xk)x2. Expanding this, we obtain f(x)=(x+18×98x(18+98))(x+72kx(72+k)).

Let y=x+mx (where x>0). By the AM-GM inequality a+b2ab, we have x+mx2m. Assuming x=m, the minimum value is 2m.

Let y1=x+18×98x(18+98). Then,

when x=18×98=42. We obtain ymin=42+42116=32

Let y2=x+72×kx(72+k).

When x=72×k,We obtain ymin=2(72×k)(72+k).

Since y1=y2, we have 2(72×k)(72+k)=32, which yields k=8 or k=200.

With same method, consider the function f(x)=(x+18×72x90)y1(x+98kx(98+k))y2. When x1=18×72=36, y1=2×3690=18, When x2=98×k, y2=2(98×k)(98+k), Thus, y1=y2 gives 2(98×k)(98+k)=18, and the minimum value corresponds to k=32 or k=200.

In summary, k1=8, k2=32, and k3=200, with their sum being $8+32+200=\boxed{240}$.

~ Edited by dongjiu0728

Solution 3 (elegant polynomial)

We first do the same thing as Solution 1 did, but in mathematical language.

Lemma: for Polynomial $P(x)$, if $P(x_0) = 0$ and $P'(x_0) = 0$ both hold, then $x_0$ is a multiple root of $P(x)$.

This lemma is obvious since every root of $P(x)$ occurs $\deg P - 1$ times in the derivative polynomial and any single root of $P(x)$ can't be a root of $P'(x)$.

Simply name m as the minimum value of $f(x)$.

Then $f(x) \geq m$ and the equal sign holds if and only of $x=x_1$ or $x=x_2$.

Define $P(x)=(x-18)(x-72)(x-98)(x-k)-mx$. Obviously, $x_1$ and $x_2$ satisfy the two properties in the lemma. So we've got: \[(x-18)(x-72)(x-98)(x-k)-mx = (x-x_1)^2(x-x_2)^2\] Take $x=18, 72, 98, k$, we get: \[(18-x_1)(18-x_2)= \pm\sqrt{-m}\sqrt{18}\] and so on. So we can construct $Q(t)=(t^2-x_1)(t^2-x_2)-\sqrt{-m}t$. As what we have seen, $\pm\sqrt{18}, \pm\sqrt{72}, \pm\sqrt{98}, \pm\sqrt{k}$ are four roots of $Q(t) = 0$. So we've got: \[Q(t)=(t^2-x_1)(t^2-x_2)-\sqrt{-m}t=(t\pm\sqrt{18})(t\pm\sqrt{72})(t\pm\sqrt{98})(t\pm\sqrt{k})\] Comparing the cubic coefficient: \[\pm\sqrt{18}\pm\sqrt{72}\pm\sqrt{98}\pm\sqrt{k}=0\] So \[k=(\pm\sqrt{18}\pm\sqrt{72}\pm\sqrt{98})^2\] Now $8, 32, 200, 512$ are accesible in this form. The final task is to eliminate $512$. In this occasion the four roots are either $\sqrt{18}, \sqrt{72}, \sqrt{98}, -\sqrt{512}$ or $-\sqrt{18}, -\sqrt{72}, -\sqrt{98}, \sqrt{512}$. In either way the constant coefficient of $Q(t)$ is \[x_1x_2 = -\sqrt{18}\sqrt{72}\sqrt{98}\sqrt{512}\] But, $x_1$ and $x_2$ are both positive, so we end up with contradiction.

$8+32+200=\boxed{240}$

~ Edited by ThomasZZW

See also

2025 AIME II (ProblemsAnswer KeyResources)
Preceded by
Problem 14
Followed by
Last Problem
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
All AIME Problems and Solutions

The problems on this page are copyrighted by the Mathematical Association of America's American Mathematics Competitions. AMC logo.png