5

How do we go about this questions?

I see that taking log on both sides is not an option since the LHS consists of a sum and not a product.

I tried differentiating it but without any boundary conditions I fail to see any possible solutions.

Can someone guide me on how to tackle this question?

Qiaochu Yuan
  • 419,620

3 Answers3

3

Hint: There aren't many choices for $y$. It can only be $1,2,$ or $3,$ because if it is $4$ or greater $x^y \gt 84$ So try each of them in turn and see what you find.

Ross Millikan
  • 374,822
3

Note if $y=1$ then $f(x,1) = x+1$ so let $x = 83$.

gt6989b
  • 54,422
1

(1,83) and (83,1) seem to be the only answers.

In [1]: for x in range(1,84):
   ...:     for y in range(1,84):
   ...:         if x**y + y**x == 84: 
   ...:             print (x,y)
   ...:             
(1, 83)
(83, 1)

(Don't know whether python scripts are allowed to prove things on MSE, though)

Elmar Zander
  • 1,625