Let $R$ be a commutative ring. Suppose I have polynomials $a\left(x\right),b\left(x\right) \in R\left[x\right]$ of degrees $m,n$, respectively. My reading states that
there then exist polynomials $u\left(x\right),v\left(x\right) \in R\left[x\right]$ of degrees $m-1,n-1$, respectively, such that $a(x)v(x)-b(x)u(x) = \operatorname{Res}_{m,n}(a(x), b(x))$.
My question is why must this be true and how can it be proven? I have tried small examples by hand and it seems to be true, but I have no idea how to approach a proof. I think there might be a way via the division algorithm, but that isn't obvious to me.
I'll assume we're working over a field.
If the resultant is $0$, then $u = v = 0$ works.
If the resultant is nonzero, then $a$ and $b$ are coprime (since they don't have any common roots) so by the euclidean algorithm we see there are polynomials $u'$ and $v'$ so that
$$au' + bv' = 1 = \text{gcd}(a,b)$$
So multiplying both sides by the resultant $R$ we see
$$a Ru' + b Rv' = R$$
and taking $u = Ru'$ and $v = -Rv'$ does the job. I'll let you check that the polynomials we get from the euclidean algorithm really are one less than the degrees of the polynomials we started with. If you like, you can also find some discussion here.
I hope this helps ^_^