Given only the expressions $x^y$ and $y^x$ and no additional information except $x\neq y$ (and the meta-knowledge that the problem was presented in the context of induction), is it possible to determine which is bigger?
If there is no clear solution, am I supposed to glean some additional insight from this problem?
Actually it's easy for x and y positive. Assume that we've labeled x and y so that y > x. Compute t = y/x. Then
u = t^(1/(t-1)).
If x > u then x^y > y^x. If x < u the reverse is true.
Example y = 3, x = 2. Then t = 3/2, u = 9/4. x < u so x^y < y^x, i.e. 2^3 < 3^2.