Definitely not x = y = z x=y=z

Algebra Level 5

Let x , y , z x, y, z be distinct positive reals satisfying x y + y z = 2 z 2 xy+yz=2{ z }^{ 2 } and 2 x z 2x\le z . Find the maximum value of

x x y + y y z + z z x \large \frac { x }{ x-y } +\frac { y }{ y-z } +\frac { z }{ z-x }

Write your answer to 4 decimal places.


The answer is 5.4000.

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

Kelvin Hong
Jun 13, 2017

y = 2 z 2 x + z , ( 2 x z ) y=\frac{2z^2}{x+z}, (2x \leq z)

Let the term be F, we have

F = x x 2 z 2 x + z + 2 z 2 x + z 2 z 2 x + z z + z z x F=\frac{x}{x-\frac{2z^2}{x+z}}+\frac{\frac{2z^2}{x+z}}{\frac{2z^2}{x+z}-z}+\frac{z}{z-x} = x ( x + z ) ( x z ) ( x + 2 z ) 2 z x z z z x =\frac{x(x+z)}{(x-z)(x+2z)}-\frac{2z}{x-z} -\frac{z}{z-x} = x 2 2 x z 6 z 2 x 2 + x z 2 z 2 =\frac{x^2-2xz-6z^2}{x^2+xz-2z^2}

By the H o m o g e n i t y Homogenity of F F , we can set t = x z t=\frac{x}{z}

So,

F ( t ) = t 2 2 t 6 t 2 + t 2 F(t)=\frac{t^2-2t-6}{t^2+t-2}

We need to find stationary value of F,

So, we need to determine the range of t t ,

Because x , z > 0 x,z >0 and 2 x z 2x \leq z , we have 0 t 1 2 0 \leq t \leq \frac{1}{2}

Checking whether which stationary point between 0 t 1 2 0 \leq t \leq \frac{1}{2}

d F d t = 0 \frac{dF}{dt}=0 3 t 2 + 16 t + 2 ( t + 2 ) 2 ( t 1 ) 2 = 0 \frac{3t^2+16t+2}{(t+2)^2(t-1)^2}=0 t = 8 + 58 3 , 8 58 3 t=\frac{-8+\sqrt{58}}{3},\frac{-8-\sqrt{58}}{3} t = 0.128 , 5.205 t=-0.128,-5.205

It seems these two values aren't between 0 t 1 2 0\leq t \leq \frac{1}{2}

So F F is monotonous between 0 t 1 2 0 \leq t \leq \frac{1}{2}

Calculating F ( 0 ) F(0) and F ( 1 2 ) F(\frac{1}{2}) , we get

F ( 0 ) = 3 F(0)=3 F ( 1 2 ) = 5.4 F(\frac{1}{2})=5.4

Which leads F M a x = 5.4000 F_{Max}=\boxed{5.4000} and give us F F is monotonously increasing between 0 t 1 2 0\leq t \leq\ \frac{1}{2}

Feel free to tell me if I have any wrong :)

Good solution!

Steven Jim - 3 years, 12 months ago

Log in to reply

Thanks for that! I wonder why here didn't had any solution haha.

Kelvin Hong - 3 years, 12 months ago
Zach Bian
Dec 29, 2017

Quick and dirty ES6:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
// Our function
var mystery = (x,y,z) => (x/(x-y) + y/(y-z) + z/(z-x));

// y solved for x,z
var y_xz = (x,z) => (2*z*z/(x+z));

var stepsize = 0.1;
var maxV = -1;
for(let z=0; z<=100; z+=stepsize){
    for(let x=0; x <= z/2; x+=stepsize){
        let y=y_xz(x,z);
        let cache = mystery(x,y,z);

        if(cache > maxV){
            maxV = cache;
            console.log(x,y,z,maxV);
        }
    }
}
console.log(maxV);

Output:

1
2
3
0 0.20000000000000004 0.1 3
0.1 0.26666666666666666 0.2 5.4
5.4

After looking at the last max, searching within z 100 z\leq100 gave me reasonable confidence that 5.4 the right answer.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...