2

I am trying to solve this excersice but I can't seem to get to anything but dead ends.

Let $b\gt 0$ and $f(x,y) = y^3+3x^2y-15y-12bx$, find all possible values of $b$ so that $f$ has at least one critical point.

I started by deriving:

  • $f_x(x,y) = 6xy-12b$

  • $f_y(x,y) = 3y^2+3x^2-15$

So, if $(x,y)$ is a critical point:

  • $xy = 2b$

  • $x^2+y^2 = 5$

That would say that the possible values of $b$ are those that define an homographic function $y = \frac{1}{x}2b$ such that its graphic intersects with the border of the circle centered at the origin with radius equal to $\sqrt{5}$.

That is my intuition, but I can't seem to find a way of getting those values in numbers. I don't know if it would help, or if it is even correct, but I also attempted using Lagrange multipliers but that route didn't yield any valid result.

Thank you very much.

John
  • 41

3 Answers3

1

Find the minimum squared distance from the origin to the graph of $y=\frac{2b}x.$ If this minimum squared distance is greater than $5,$ it will not intersect the circle; otherwise, it will.

Cameron Buie
  • 102,994
1

Hint: $x^2 + y^2 \geq 2xy $ gives you the condition on $b$.

DeepSea
  • 77,651
1

Recall that $x^2+y^2=(x+y)^2-2xy$, so your system becomes $$ \begin{cases} (x+y)^2=5+4b\\ xy=2b \end{cases} $$ that forces $5+4b\ge0$ or $b\le-5/4$.

Once this condition is granted, you have two possibilities: $$ \begin{cases} x+y=\sqrt{5+4b}\\ xy=2b \end{cases} \qquad \begin{cases} x+y=-\sqrt{5+4b}\\ xy=2b \end{cases} $$ The first corresponds to the roots of $$ z^2-z\sqrt{5+4b}+2b=0 $$ which has discriminant $5-4b$, and this requires $b\le5/4$. The same for the second system. So, finally, you get $$ -\frac{5}{4}\le b\le\frac{5}{4} $$

egreg
  • 238,574