2

How would I find the remainder of a function that has a huge exponent that would take ages to work out?

Say I have something like this:

$\frac{5x^{110} + x^4 - 7x^2 - 6}{x-1}$

I honestly don't know how to do division like this other than manually decreasing the exponent by $1$ each time until I get to $0$. That would take me ages lol.

Cozen
  • 533

2 Answers2

2

Using Polynomial remainder theorem,

if $f(x)=5x^{110}+x^4-7x^2-6,$ the remainder will be $f(1)$

0

In general, the remainder can be found by a bit of modular arithmetic.

$$ 5x^{110} + x^4 - 7x^2 - 6 \equiv 5+1-7-6 \mod x-1 $$ (because $x\equiv 1 \pmod{x-1}$)

Glen O
  • 12,425