Hello All, I am just starting with Maths and made an attempt to prove this formula using "Proof by Mathematical Induction" : (x^n - a^n) is divisible by (x-a) for all positive values of n.
Ask from this Thread : I need someone to verify this solution and point out any mistakes.
Below is my attempt to solve this:
1. For n=1 ,
2. Let's assume this is true for n = k,
3. Now, we have to prove this for n = k+1
Hence Proved that (x^n - a^n) is divisible by (x-a) for all positive values of n.
Ask from this Thread : I need someone to verify this solution and point out any mistakes.
Below is my attempt to solve this:
1. For n=1 ,
Code:
==> (x^1 - a^1) is divisible by (x-a)
==> (x-a)/(x-a) = 1
2. Let's assume this is true for n = k,
Code:
==> (x^k - a^k) is divisible by (x-a)
==> (x^k - a^k)/(x-a) = m ; where m is an integer since (x^k - a^k) is divisible by (x-a)
3. Now, we have to prove this for n = k+1
Code:
==> [x^(k+1) - a^(k+1)] is divisible by (x-a)
==> [x^(k+1) - a^(k+1)]/(x-a) = l ; where l is an integer
==> [x(x^k) -a(a^k)]/(x-a) = l
==> [x(x^k) -x(a^k) + x(a^k) -a(a^k)]/(x-a) = l ; (adding and subtracting x(a^k)
==> [x(x^k - a^k) + a^k(x-a)]/(x-a) = l
==> x(x^k - a^k)/(x-a) + a^k(x-a)/(x-a) = l
==> x(m) + a^k = l ; [(substituting (x^k - a^k)/(x-a) = m from Step 2]
[x^(k+1) - a^(k+1)] is divisible by (x-a)since there is no remainder in Step 3.
Hence Proved that (x^n - a^n) is divisible by (x-a) for all positive values of n.
Last edited by a moderator: