Given some polynomials $P(x), Q(x), R(x), \operatorname{gcd}(P(x), R(x)) = 1$ does there exist some polynomial $s(x)$ so $$ \frac{P(x)s(x) + Q(x)}{R(x)} $$ is also a polynomial? If so how do I construct one?
A concrete example I'm working with is $$ R(x) = 480 (12 x^2-1)\\ Q(x) = -48 x^5+280 x^3-259 x\\ P(x) = 1920 x^3+3360 x $$
Here's one possible solution: to make $$ \frac{P(x)s(x) + Q(x)}{R(x)} $$ a polynomial we need to ensure that every root $x_i$ of the denominator $R(x_i) = 0$ is also a root of the numerator, so $$ P(x_i) s(x_i) + Q(x_i) = 0\\ s(x_i) = -\frac{Q(x_i)}{P(x_i)} $$ and since $\operatorname{gcd}(P, R) = 1$, $P(x_i)$ cannot be zero. This is a classical interpolation problem and can be easily solved.