Minimize the Expression 6

Algebra Level 4

Given that x > y x > y and x y = 1 xy = 1 , the minimum value of x 2 + y 2 x y \frac{x^2+y^2}{x-y} can be expressed as a \sqrt{a} . Find a a .


Proposed by Temulen.


The answer is 8.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Alan Yan
Sep 21, 2015

x 2 + y 2 x y = x y + 2 x y 2 2 = 8 (AM - GM) \frac{x^2+y^2}{x-y} = x - y + \frac{2}{x-y} \geq 2\sqrt{2} = \sqrt{8} \text{ (AM - GM)}

Equality holds when x y = 2 , x y = 1 x-y = \sqrt{2} , xy = 1 These two equations are solvable. Here is some extra algebra practice, find the equality case!

Who is Temulen? Great question :)

You should ensure that equality can be achieved. Otherwise, you only have a lower bound, and it might not be the greatest lower bound (IE Minimum).

Calvin Lin Staff - 5 years, 8 months ago

Exactly same, i was thinking of posting the solution but you.......

Akhil Bansal - 5 years, 8 months ago

Nice problem, Alan! I have a challenge for you guys too. Like Alan, which wants you to now solve for x x and y y from x y = 2 , x y = 1 x-y = \sqrt{2} , xy = 1 Since we now know the solution, try starting from scratch and doing the problem in reverse starting with the answer. See if you can solve for x x and y y from the initial x 2 + y 2 x y \frac{x^2+y^2}{x-y} Make sure to show your work!

Menachem Avinoam - 5 years, 7 months ago
Menachem Avinoam
Oct 18, 2015

Given: x y = 1 \boxed{ xy =1} and x > y \boxed{ x > y}

We need to first realize that any number x x , where x > 0 x>0 , will satisfy the above where y = 1 x y=\frac{1}{x}
If x x is negative, y y would also need to be negative, but since x > y x > y , there is no y y which would support a negative value for x x .

How do we approach this? We can start off by plugging in different values for x x and y y , to get a sense of what our answer will look like. Remembering y = 1 x y=\frac{1}{x} , we can write our equation like this:

Let b = a b = \sqrt{a}
f ( x ) = m i n { x 2 + x 2 x x 1 } = b f(x)= min\{\frac{x^2+x^{-2}}{x-x^{-1}}\} = b

f ( 2 ) = ( 2 ) 2 + ( 1 2 ) 2 ( 2 ) ( 1 2 ) = 17 6 = 2.8 3 f(2)= \frac{(2)^2+(\frac {1}{2})^2}{(2)-(\frac {1}{2})}=\frac{17}{6}=2.8\overline{3}

Ok, now let's try to get a lower result:

f ( 3 ) = ( 3 ) 2 + ( 1 3 ) 2 ( 3 ) ( 1 3 ) = 41 12 = 3.41 6 f(3) = \frac{(3)^2+(\frac {1}{3})^2}{(3)-(\frac {1}{3})}= \frac{41}{12} = 3.41\overline{6}

Oops, wrong direction, let's return to our f ( 2 ) f(2) and go lower. Since we know x cannot be 1, let's try going to the midpoint between 1 and 2 which is 1 1 2 1\frac{1}{2} .

f ( 1 1 2 ) = ( 3 2 ) 2 + ( 2 3 ) 2 ( 3 2 ) ( 2 3 ) = 97 30 = 3.2 3 f(1\frac{1}{2}) = \frac{(\frac{3}{2})^2+(\frac{2}{3})^2}{(\frac{3}{2})-(\frac{2}{3})}= \frac{97}{30}=3.2\overline{3}

Closer than f ( 3 ) f(3) but our f ( 2 ) f(2) was closer. Our 2 value seems to be about spot-on. And after fiddling with this problem for a while, since I'm not willing to throw in the towel when I solve problems like this all the time with my programmer skills, I decided since I've been brute forcing it already, let me brute force it with JavaScript's help, because I'm a programmer for crying out loud.

1
2
3
4
5
6
7
8
var answer={x:null,a:null};
for(var i=1,a,x;i<=1000;i++)
{
    x=1+(i/1000);
    a=Math.pow((Math.pow(x,2)+Math.pow(1/x,2))/(x-(1/x)),2);
    if(answer.x===null||a<answer.a){answer.a=a;answer.x=x;}
}
console.log("x≈"+answer.x+"\na≈"+answer.a);

In chrome this yields:
x≈1.932
a≈8.000000141498505

And close enough to get the answer right, so I punched in 8 \boxed{8} and got it right.

If you want to know the value where x x is exactly 8, the answer is 3 + 1 2 \frac{\sqrt{3}+1}{\sqrt{2}} .
How did I get this answer? I solved Alan Yan's equation in the answers. I won't show my work for that though so you can test your knowledge. But you can validate it in JavaScript like so:

1
2
3
var x=(Math.sqrt(3)+1)/Math.sqrt(2);
a=Math.pow((Math.pow(x,2)+Math.pow(1/x,2))/(x-(1/x)),2);
console.log(a);

Call it cheating if you will, I didn't give up and got it right. And to make up for it, not seeing an easy approach in the answers already, I posted this answer. Hope others find it useful.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...