gede said:
Please tell me the method of factoring of ##a^n + b^n## and ##a^n - b^n##?
1) Define a function F: R -> R: a -> a^n + b^n => F(a) = a^n + b^n
b and n are natural numbers, n is odd
We see: F(-b) = -b^n + b^n = 0 => a + b is a divisor of F(a) (fundamental theorem of algebra)
That's one factor, you can find what's left after the division using horner's rule or using euclidean division. Then you can try to find those factors.
Same thing when you have Z(a) = a^n -b^n
b and n natural numbers, n odd
2) Define a function G: R -> R: a -> a^n - b^n => G(a) = a^n - b^n
b and n are natural numbers, n is not odd
Use a^2 - b^2 = (a-b)(a+b) to find factors.
3) Define a function H: R -> R: a -> a^n + b^n => H(a) = a^n + b^n
b and n are natural numbers, n is not odd
This is the hardest one. You have to manipulate the expressions. For example,
a^4 +1 = a^4 + 1 + 2a^2 - 2a^2 = (a^2 +1)^2 - 2a^2 = (a^2 + 1 + SQRT(2)a)(a^2 + 1 - SQRT(2)a)