My class has just been taught about polynomial division, and how it can be used to see if something is a factor (although remainder theorem is quicker), if the remainder = 0.
But what is the use of remainder that does not equal 0, I'm unsure where to apply this to in situations.
For example if you do:
$$\frac{3x^3+5x^2+x+4}{x-2}$$
the remainder is $50$, which means (more on the graphic side of things), that the line $x=2$ will intercept $3x^3+5x^2+x+4$ at $(2,50)$
But what use is this beyond "find the intercept", "find the remainder"?
(Like how you can ask "5 - 0.2 = ?", but a situation you apply that to, could be: "what is the change from a £5 note used to buy a 20p pencil")
In addition to the use mentioned by J.M. in the comments, you can also use remainders of polynomial division to find the tangent line to a polynomial at a particular point.
Concretely, if the remainder of $P(x)$ when divided by $(x-a)^2$ is $R(x)$, then the equation of the tangent line to $P$ at $x=a$ is $y = R(x)$.
How does this work? Note that if the remainder when $P$ is divided by $(x-a)^2$ is $R$ then
$$P(x) = (x-a)^2 Q(x) + R(x)$$
where $R(x)$ is linear. If we evaluate $P$ at $a$ then we get
$$P(a) = (a-a)^2 Q(a) + R(a) = R(a)$$
so $R$ and $P$ have the same value at $x=a$. Similarly if we evaluate the derivative of $P$ at $a$ we get
$$P'(a) = 2(a-a)Q(a) + (a-a)^2Q'(a) + R'(a) = R'(a)$$
so $P$ and $R$ have the same slope. But $R$ is linear, so it is completely determined by knowing its slope and value at one point. Therefore $y=R(x)$ is the tangent line to $P$ at $x=a$.