If and are distinct positive real numbers satisfying the equation above, find .
You are allowed to use computer assistance.
You might refer to Soumava's algorithm .
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.
This can be solved using the Newton-Raphson method but first we need to set up our function and establish the number of roots. First, note that: x y y ln ( x ) y = 4 3 = ln ( 4 3 ) = ln ( x ) ln ( 4 3 ) . Substituting this back into the first equation gives: y x = ( ln ( x ) ln ( 4 3 ) ) x . The function that we want to find the root of is: f ( x ) = ( ln ( x ) ln ( 4 3 ) ) x − 4 3 = e x ln ( ln ( x ) ln ( 4 3 ) ) − 4 3
We now need to establish the number of roots that this function has. It is actually simpler to consider x y = y x . We can rearrange this as: y ln ( y ) = x ln ( x ) Clearly x = y is always a solution to this but since we need x and y to be distinct we are only interested in other solutions. Fortunately g ( x ) = ln ( x ) / x is not injective. We can sketch it by noting the following facts: x → 0 lim g ( x ) g ( 1 ) x → ∞ lim g ( x ) g ′ ( x ) g ′ ( e ) = − ∞ = 0 = 0 = x 2 1 − ln ( x ) = 0 Also, note that x = e is the only turning point. Thus g ( x ) looks like this: So g ( x ) = k has precisely two solutions for any k ∈ ( 0 , 1 / e ) , one solution in the range ( 1 , e ) and the other in the range ( e , ∞ ) .
We cannot directly map this back onto the original problem since we also need ln ( x ) / x = ln ( 4 3 ) / x y . What we can infer, though, is that the solution set to x y = y x consists of the line y = x , as well as a smooth curve from the region ( 1 , e ) × ( e , ∞ ) , through the point ( e , e ) , to the region ( e , ∞ ) × ( 1 , e ) .
The solutions to the original problem correspond to the intersection between this curve and y = ln ( 4 3 ) / ln ( x ) . This will have either one or three solutions, depending on whether it intersects off the line y = x . Therefore, we will search for a solution to f ( x ) = 0 near x = 1 . 1 .
Starting at x 0 = 1 . 1 , and applying the Newton-Raphson method, after 5 iterations we have x 5 = 1 . 1 5 6 7 5 2 5 1 5 . The corresponding value for y is y 5 = ln ( 4 3 ) / ln ( x 5 ) = 2 5 . 8 2 9 4 8 7 1 9 . The required solution is then ⌊ 1 0 0 ( x + y ) ⌋ = 2 6 9 8 .