1

Here is what I have so far:

Base: When $n=1$, we have $x^1 - y^1 = x - y$. Hence, P(1) is true.

Inductive hypothesis: We assume that P(k) is true: $x^k - y^k$ is divisible by $x - y$. That is: $x^k-y^k=(x - y)z$, for some integer $z$

Inductive step: We show that P(k+1) is true. That is:

$x^{k+1} - y^{k+1} = (x - y)z$

I don't quite know where to go from there.

Andy
  • 47

1 Answers1

7

The induction hypothesis should be “$x-y$ divides $x^k-y^k$”, not that they're equal.

Hint: $x^{k+1}-y^{k+1}=x^{k+1}-xy^{k}+xy^k-y^{k+1}$

Alternate hint: from the induction hypothesis you have $x^k-y^k=(x-y)z$, so $y^k=x^k-(x-y)z$ and therefore $$ x^{k+1}-y^{k+1}=x^{k+1}-x^ky+(x-y)yz $$

egreg
  • 238,574