Gcd of polynomials is 1. There is an nxn matrix with determinant....

In summary, the problem is to show that for any field $F$ and polynomials $p_1,\ldots,p_n\in F[x]$ with $\gcd(p_1,\ldots,p_n)=1$, there exists an $n\times n$ matrix over $F[x]$ with determinant $1$ and first row $p_1,\ldots,p_n$. The case $n=2$ can be easily solved using the fact that there exist $a_1,a_2\in F[x]$ such that $p_1a_1+p_2a_2=1$. For $n=3$, we can construct a matrix with the desired properties by setting $a_2=db_2
  • #1
caffeinemachine
Gold Member
MHB
816
15
Let $F$ be any field. Let $p_1,\ldots, p_n\in F[x]$. Assume that $\gcd(p_1,\ldots,p_n)=1$. Show that there is an $n\times n$ matrix over $F[x]$ of determinant $1$ whose first row is $p_1,\ldots,p_n$.

When $n=2$ this is easy since then there exist $a_1,a_2\in F[x]$ such that $p_1a_1+p_2a_2=1$. So the required matrix has first row $p_1,p_2$ and the second row $-a_2,a_1$.

I am stuck when $n>2$.
 
Physics news on Phys.org
  • #2
Re: gcd of polynomials is 1. there is an nxn matrix with determinant...

caffeinemachine said:
Let $F$ be any field. Let $p_1,\ldots, p_n\in F[x]$. Assume that $\gcd(p_1,\ldots,p_n)=1$. Show that there is an $n\times n$ matrix over $F[x]$ of determinant $1$ whose first row is $p_1,\ldots,p_n$.

When $n=2$ this is easy since then there exist $a_1,a_2\in F[x]$ such that $p_1a_1+p_2a_2=1$. So the required matrix has first row $p_1,p_2$ and the second row $-a_2,a_1$.

I am stuck when $n>2$.

For $n=3$ there exist $a_1,a_2,a_3\in F[x]$ such that $p_1a_1+p_2a_2+p_3a_3=1$.
So a matrix that has a matching determinant will do the trick.

For instance:
$$\begin{bmatrix}p_1 & p_2 & p_3 \\ 1 & -a_1/a_2 & 0 \\ 0 & a_3 & -a_2 \end{bmatrix}$$
Next step is to try and construct such a matrix for any n.
Put for instance 1 below $p_1$ and zeroes below that.
Then complete the proof with full induction.
 
  • #3
Re: gcd of polynomials is 1. there is an nxn matrix with determinant...

I like Serena said:
For $n=3$ there exist $a_1,a_2,a_3\in F[x]$ such that $p_1a_1+p_2a_2+p_3a_3=1$.
So a matrix that has a matching determinant will do the trick.

For instance:
$$\begin{bmatrix}p_1 & p_2 & p_3 \\ 1 & -a_1/a_2 & 0 \\ 0 & a_3 & -a_2 \end{bmatrix}$$
Next step is to try and construct such a matrix for any n.
Put for instance 1 below $p_1$ and zeroes below that.
Then complete the proof with full induction.

This looks promising but there seems to be a small problem with this construction that $a_1/a_2$ might not necessarily lie in $F[x]$. Can we somehow still make it work?
 
  • #4
Re: gcd of polynomials is 1. there is an nxn matrix with determinant...

caffeinemachine said:
This looks promising but there seems to be a small problem with this construction that $a_1/a_2$ might not necessarily lie in $F[x]$. Can we somehow still make it work?

Good point. :eek:

You already know that $\begin{bmatrix}p_2 & p_3 \\ -a_3' & a_2' \end{bmatrix}$ is a solution for n=2.

So we're looking for a solution of the following form for n=3:
$$\begin{bmatrix}p_1 & p_2 & p_3 \\ 1 & x & y \\ 0 & a_3 & -a_2 \end{bmatrix}$$
In other words:
$$p_1(-a_2 x - a_3 y) = p_1a_1$$
$$a_2 x + a_3 y = -a_1$$
This works if $\gcd(a_2, a_3)$ divides $a_1$.
Not yet sure how and if we can proof that though...
 
  • #5
caffeinemachine said:
Let $F$ be any field. Let $p_1,\ldots, p_n\in F[x]$. Assume that $\gcd(p_1,\ldots,p_n)=1$. Show that there is an $n\times n$ matrix over $F[x]$ of determinant $1$ whose first row is $p_1,\ldots,p_n$.

When $n=2$ this is easy since then there exist $a_1,a_2\in F[x]$ such that $p_1a_1+p_2a_2=1$. So the required matrix has first row $p_1,p_2$ and the second row $-a_2,a_1$.

I am stuck when $n>2$.
For $n=3$ there exist $a_1,a_2,a_3\in F[x]$ such that $p_1a_1+p_2a_2+p_3a_3=1$. Let $d = \text{gcd}(a_2,a_3)$ and let $a_2 = db_2$ and $a_3 = db_3$, where $\text{gcd}(b_2,b_3) = 1.$ Then there exist $c_2$ and $c_3$ such that $a_1 = c_2b_2+c_3b_3.$ Consequently $$\begin{vmatrix}p_1&p_2&p_3 \\ 0&b_3&-b_2 \\ -d&c_2&c_3 \end{vmatrix} = p_1(b_3c_3+b_2c_2) -p_2(-b_2d) + p_3(b_3d) = p_1a_1 + p_2a_2+p_3a_3=1.$$

Where do we go from there? I don't have time at present to think about how to deal with $n>3$, but here are a couple of comments. First, this problem does not really appear to be about $F[x]$, it looks as though the result should apply to elements of any euclidean domain. Second, the upper right corner $\begin{array}{cc}p_2&p_3 \\b_3&-b_2 \end{array}$ of the above determinant has the same general appearance as the determinant that solves the $n=2$ case. That might perhaps mean that there is scope for some sort of inductive procedure here.
 
  • #6
Opalg said:
For $n=3$ there exist $a_1,a_2,a_3\in F[x]$ such that $p_1a_1+p_2a_2+p_3a_3=1$. Let $d = \text{gcd}(a_2,a_3)$ and let $a_2 = db_2$ and $a_3 = db_3$, where $\text{gcd}(b_2,b_3) = 1.$ Then there exist $c_2$ and $c_3$ such that $a_1 = c_2b_2+c_3b_3.$ Consequently $$\begin{vmatrix}p_1&p_2&p_3 \\ 0&b_3&-b_2 \\ -d&c_2&c_3 \end{vmatrix} = p_1(b_3c_3+b_2c_2) -p_2(-b_2d) + p_3(b_3d) = p_1a_1 + p_2a_2+p_3a_3=1.$$

Where do we go from there? I don't have time at present to think about how to deal with $n>3$, but here are a couple of comments. First, this problem does not really appear to be about $F[x]$, it looks as though the result should apply to elements of any euclidean domain. Second, the upper right corner $\begin{array}{cc}p_2&p_3 \\b_3&-b_2 \end{array}$ of the above determinant has the same general appearance as the determinant that solves the $n=2$ case. That might perhaps mean that there is scope for some sort of inductive procedure here.
Thanks a ton!
 

1. What is the significance of the gcd of polynomials being 1?

The gcd (greatest common divisor) of two polynomials is the highest degree polynomial that divides both of the original polynomials. When the gcd of polynomials is 1, it means that the two polynomials have no common factors other than 1, which implies that they are relatively prime. This can be useful in simplifying expressions and solving equations.

2. How is the gcd of polynomials calculated?

The gcd of polynomials can be found by using the Euclidean algorithm, which involves repeatedly dividing the larger polynomial by the smaller one until the remainder is 0. The last non-zero remainder is the gcd of the two polynomials.

3. Can the gcd of polynomials ever be greater than 1?

Yes, the gcd of polynomials can be greater than 1 if the two polynomials have common factors other than 1. For example, the gcd of x^2 + 4x + 4 and x^2 + 6x + 9 is x + 3, which is greater than 1.

4. How is the determinant of an nxn matrix related to the gcd of polynomials?

The determinant of an nxn matrix can be calculated by finding the gcd of the polynomials in the last row of the matrix. This is known as the Bareiss algorithm and can be a more efficient way of calculating determinants for larger matrices.

5. Can the determinant of an nxn matrix with a gcd of polynomials equal to 1 ever be 0?

Yes, it is possible for the determinant of an nxn matrix to be 0 even if the gcd of the polynomials is 1. This can occur if the matrix has a row or column of all 0s, making the determinant 0 regardless of the gcd of the polynomials.

Similar threads

  • Linear and Abstract Algebra
Replies
15
Views
1K
  • Linear and Abstract Algebra
Replies
8
Views
1K
Replies
4
Views
2K
  • Linear and Abstract Algebra
Replies
15
Views
4K
  • Linear and Abstract Algebra
Replies
4
Views
985
  • Linear and Abstract Algebra
Replies
10
Views
2K
  • Linear and Abstract Algebra
Replies
1
Views
1K
  • Linear and Abstract Algebra
Replies
1
Views
2K
  • Linear and Abstract Algebra
Replies
1
Views
1K
  • Linear and Abstract Algebra
Replies
5
Views
2K
Back
Top