A recent question tells us that even if two polynomials $f,g\in \mathbb Z[X]$ have no common factor as polynomials, their values at integer points may have common factors. That question gives this example: $$ f=x^3-x^2+3x-1, \qquad g=x^3+2, \qquad \gcd(f(27),g(27))=31 $$
The explanation I've given for this example is that even though $\gcd(f,g)=1$ in $\mathbb{Z}[x]$, we cannot always write $1=uf+vg$ with $u,v \in \mathbb{Z}[x]$ (because $\mathbb{Z}[x]$ is not a PID). But we can write $1=uf+vg$, if we allow $u,v \in \mathbb{Q}[x]$. In the example above, we get $$ 1 = \dfrac1{31} (-6 x^2-7 x-3)f(x)+\dfrac1{31}(6 x^2+x+14)g(x) $$
Now, clearing denominators, we get $d = uf+vg$ with $u,v \in \mathbb{Z}[x]$ and $d \in \mathbb{Z}$.
Is there a name for $d$ in terms of $f$ and $g$?
Can we compute $d$ without performing the entire extended Euclidean algorithm in $\mathbb{Q}[x]$?
When $d>1$, is it always true that some values of $f$ and $g$ (at the same point) are not coprime?
It seemed that $d$ is the resultant of $f$ and $g$, but perhaps not.