4

Supposed $f(x), g(x) \in F[x]$ for some field $F$ are polynomials of degrees $m, n $ respectively. Moreover assume that they are relatively prime. By Euclidean algorithm I can find $a'(x), b'(x)$ such that $$a'(x)f(x) + b'(x)g(x) = 1$$ and thus for any $p(x)$, I can find $a(x), b(x)$ such that $$a(x)f(x) + b(x)g(x) = p(x)$$ My question is what if you restrict the degree of $p(x)$ to be less than $d$. Then can I find $a(x), b(x)$ of degrees $d-m, d-n$ respectively that satisfy the equation above?

Alex
  • 43

2 Answers2

1

Let $f(x) = x^2$ and $g(x) = x^2 + 1$, so that $-f(x) + g(x) = 1$. Note that $m=n=2$.

Let $p(x) = x$, so the degree of $p(x)$ is less than $d=2$. However there do not exist coefficients $a(x),b(x)$ of degree zero (constants) such that:

$$ a(x)f(x) + b(x)g(x) = p(x) $$

since any such linear combination would be a polynomial in $x^2$ (and $p(x) = x$ is not).

hardmath
  • 37,015
  • Thanks for the counterexample. However, I was more interested in the case where $d \geq n+m$, in which case Luis' answer below proves what I want. – Alex Apr 25 '15 at 21:11
0

In a principal ring A, like F[x], all pair of elements f, g have m.c.d. and l.c.m. French call “Identité de Bezout” the property: if d = (f, g) then there exist a, b in A such that af + bg = d. When d = 1 we have for all p, apf + bpg = p. On the other hand we look at the equation fX + gY = p and since we have a solution ap, bp we can make X = ap + hg and Y = bp – hf with the parameter h in F[x] because (X – ap)f + (Y – bp)g = 0. What you have now is to see the question of degrees to be considered.

Piquito
  • 29,594