2

If $x \in \mathbb{R} $, find the smallest value of $y=\frac{x^2 + 7}{\sqrt{x^2 + 6}}$

Attempted solution:

$y$ can be expressed as $ y=\frac{(x^2 + 6)+1}{\sqrt{x^2 + 6}} = \sqrt{x^2+6} + \frac{1}{\sqrt{x^2 + 6}}$.

However, we can't use AM-GM here since $\sqrt{x^2+6} = \frac{1}{\sqrt{x^2 + 6}}$ when $x^2=-5$.

Using graphing software, I can tell that $y$ minimizes when $x=0,$ I know I can also get the derivative of $y$ with respect to $x$ and get the critical points.

My question is, how can we get the minimum of $y$ analytically (without using calculus)?

Note: Since $y$ is an even function, I think we only need to prove that the function is monotonically increasing on the interval $[0,\infty)$. However, I don't know how to show this without resorting to calculus.

Anne Bauval
  • 34,650

4 Answers4

4

You're on the right track: essentially as you do, let $u=\sqrt{x^2+6}$. Then your expression is equal to $${u^2+1\over u}=u+{1\over u}.$$ It's easier to show that this is increasing in $u$ for $u$ in the "appropriate" range, namely $u\in [6,+\infty)$ (which gives us the same result).

To see this, we compute $$u+h+{1\over u+h}-u-{1\over u}=h-{u+h-u\over u(u+h)}=h-{h\over u(u+h)}.$$ Since $u\ge 6$, if $h>0$ we have ${h\over u(u+h)}<h$ as hoped for.

Note that the above argument works if we replace $6$ by any number $>1$.

Noah Schweber
  • 245,398
3

If $x=0$ we obtain a value $\frac{7}{\sqrt6}.$

We'll prove that it's a minimal value.

Indeed, we need to prove that: $$\frac{x^2+7}{\sqrt{x^2+6}}\geq\frac{7}{\sqrt6}$$ or $$6(x^2+7)^2\geq49(x^2+6)$$ or $$6x^4+35x^2\geq0$$ and we are done.

2

As commented earlier: you don't need to prove the monotonicity; let $a=x^2≥0.$ Then, $$6(a+6)\left(y^2-\frac{7^2}6\right)=6(a+7)^2-7^2(a+6)=a(6a+35)\ge0$$ hence (since $y\ge0$) the minimum of $y$ is $\frac7{\sqrt6},$ attained for $x=0.$

Anne Bauval
  • 34,650
0

From this step we have

$$y=\frac{(x^2 + 6)+1}{\sqrt{x^2 + 6}} = \sqrt{x^2+6} + \frac{1}{\sqrt{x^2 + 6}}>2$$

and by $t= \sqrt{x^2+6}\ge 6$ we have

$$t+\frac1t=m \implies t^2-mt+1=0 \implies t=\frac{m+\sqrt{m^2-4}}{2}$$

which is strictly increasing with $m$, then the minimum is attained for $t=6\iff x=0$.

user
  • 154,566