<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - comments on Post, How Do I Find a Particular Theorem?</title>
    <link>http://www.mapleprimes.com/posts/40202-How-Do-I-Find-A-Particular-Theorem</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 20:17:56 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 20:17:56 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest comments added to the Post, How Do I Find a Particular Theorem?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - comments on Post, How Do I Find a Particular Theorem?</title>
      <link>http://www.mapleprimes.com/posts/40202-How-Do-I-Find-A-Particular-Theorem</link>
    </image>
    <item>
      <title>Theorem?</title>
      <link>http://www.mapleprimes.com/posts/40202-How-Do-I-Find-A-Particular-Theorem?ref=Feed:MaplePrimes:How Do I Find a Particular Theorem?:Comments#comment73962</link>
      <itunes:summary>Obviously, if your ring R has an identity, there is a square matrix with determinant A, namely a diagonal matrix with one A and all other diagonal entries 1.
So I suppose your ring R doesn't have an identity.
But then your result is not true, e.g. if R is the commutative ring over the integers generated by x (i.e. polynomials in x with integer coefficients and no constant term) take 
&lt;maple&gt;M = RTABLE(156754120,MATRIX([[x, 0], [0, x^2]]),Matrix)&lt;/maple&gt;.  Its determinant is &lt;maple&gt;x^3&lt;/maple&gt; so we can take &lt;maple&gt;A = x&lt;/maple&gt;, &lt;maple&gt;B = x^2&lt;/maple&gt;.  But the determinant of any 2 x 2 matrix over R is divisible by &lt;maple&gt;x^2&lt;/maple&gt;.
</itunes:summary>
      <description>The latest comments added to the Post, How Do I Find a Particular Theorem?</description>
      <guid>73962</guid>
      <pubDate>Wed, 23 Jan 2008 07:27:55 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Also: assume R has an identity</title>
      <link>http://www.mapleprimes.com/posts/40202-How-Do-I-Find-A-Particular-Theorem?ref=Feed:MaplePrimes:How Do I Find a Particular Theorem?:Comments#comment84373</link>
      <itunes:summary>I did mean also to add: my ring R has an identity.
Let char(R)=0, too. Feel free to do the
char(R)=p&gt;0 case for me, too :).
Correct me if I did not set up my conjecture
properly, but, your example:

M factors as M = A*B

where A =[[x,0],[0,1]] and B =[[1,0],[0,x^2]]

det M = x^3 
det A = x
det B = x^2

so det M factors over R into two non-units,
and M factors over GL2(R) into two matrices with these
factors as determinants.

So, at the moment, I still don't see a counterexample.
Oh, also, the matrices must be size N by N where N &gt; 1.
The result is trivially true for N=1.

I started a sketch of a proof in the N=2 case,
but I realized it was wrong as I began to fill in the details.</itunes:summary>
      <description>The latest comments added to the Post, How Do I Find a Particular Theorem?</description>
      <guid>84373</guid>
      <pubDate>Wed, 23 Jan 2008 13:50:47 Z</pubDate>
      <itunes:author>resolvent</itunes:author>
      <author>resolvent</author>
    </item>
    <item>
      <title>Counterexample</title>
      <link>http://www.mapleprimes.com/posts/40202-How-Do-I-Find-A-Particular-Theorem?ref=Feed:MaplePrimes:How Do I Find a Particular Theorem?:Comments#comment73948</link>
      <itunes:summary>I hope I have this straight now.  R is a commutative ring with identity, you have an n x n matrix M over R such that det(M) = rs where r and s are non-units in R, and you want to write M = AB where A and B are n x n matrices over R with det(A) = r and det(B) = s.  

I think I have a counterexample.  Let R be the ring with identity generated by one indeterminate x with &lt;maple&gt;x^2 = 0&lt;/maple&gt;, let &lt;maple&gt;M = Matrix([[x,0],[0,x]])&lt;/maple&gt;, and take r=s=0.

Let's try to find A and B using Maple.  Start with two general 2x2 matrices over R.  The coefficients e[i,j], f[i,j], g[i,j] and h[i,j] must be integers.
&lt;pre&gt;
&gt; with(LinearAlgebra):
  M:= DiagonalMatrix([x,x]);
  A:= Matrix(2,2,(i,j)-&gt;e[i,j]+f[i,j]*x); 
  B:= Matrix(2,2,(i,j) -&gt; g[i,j]+h[i,j]*x);
&lt;/pre&gt;
To satisfy our requirements, the coefficients of x^0 and x^1 in the entries of A.B-M and in det(A) and det(B) must be 0.
&lt;pre&gt;
&gt; P:= A.B-M;
  L:= map(t -&gt; (coeff(t,x,0),coeff(t,x,1)),
    [seq(seq(P[i,j],i=1..2),j=1..2), Determinant(A),   
      Determinant(B)]);
&lt;/pre&gt;

Use Groebner[Solve] to see if there is a solution to these equations.

&lt;pre&gt;
&gt; with(Groebner):
  Solve(L,indets(L));
&lt;/pre&gt;
&lt;maple&gt;{}&lt;/maple&gt;

So, if Maple is to be believed, there is no solution.
There's probably a nicer proof than that. </itunes:summary>
      <description>The latest comments added to the Post, How Do I Find a Particular Theorem?</description>
      <guid>73948</guid>
      <pubDate>Wed, 23 Jan 2008 23:15:09 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>do you allow the matrices to be of arbitrary dimension?</title>
      <link>http://www.mapleprimes.com/posts/40202-How-Do-I-Find-A-Particular-Theorem?ref=Feed:MaplePrimes:How Do I Find a Particular Theorem?:Comments#comment73946</link>
      <itunes:summary>do you allow the matrices to be of arbitrary dimension?</itunes:summary>
      <description>The latest comments added to the Post, How Do I Find a Particular Theorem?</description>
      <guid>73946</guid>
      <pubDate>Thu, 24 Jan 2008 01:56:05 Z</pubDate>
      <itunes:author>Axel Vogt</itunes:author>
      <author>Axel Vogt</author>
    </item>
    <item>
      <title>A note and a variant</title>
      <link>http://www.mapleprimes.com/posts/40202-How-Do-I-Find-A-Particular-Theorem?ref=Feed:MaplePrimes:How Do I Find a Particular Theorem?:Comments#comment73940</link>
      <itunes:summary>Note that the original question did NOT have M=A*B, but merely that det(M)=A*B and exists matrices U,V such that det(U)=A and det(V)=B, and no other relations.  In other words, U.V does not have to satisfy any relation at all - unlike Robert's last post.

If you allow U and V to be of any dimension, then this is easy - take them both to be of dimension 1.  The more interesting case is when dim(M) = n = degree(det(M)).  Then we can find matrices U and V with dimension that of the factors A and B - basically these are just the companion matrices of A and B!</itunes:summary>
      <description>The latest comments added to the Post, How Do I Find a Particular Theorem?</description>
      <guid>73940</guid>
      <pubDate>Thu, 24 Jan 2008 08:13:56 Z</pubDate>
      <itunes:author>JacquesC</itunes:author>
      <author>JacquesC</author>
    </item>
    <item>
      <title>Non-Maple proof</title>
      <link>http://www.mapleprimes.com/posts/40202-How-Do-I-Find-A-Particular-Theorem?ref=Feed:MaplePrimes:How Do I Find a Particular Theorem?:Comments#comment84367</link>
      <itunes:summary>Here's a proof of my counterexample without using Maple.
Suppose A and B are 2 x 2 matrices over R so that 
det(A) = det(B) = 0 and A B = M = x I.
Let Adj be the classical adjoint operator, so 
&lt;maple&gt;Adj(Matrix([[a,b],[c,d]]))= Matrix([[d,-b],[-c,a]])&lt;/maple&gt;.  Note that 
Adj(A) A = det(A) I = 0 so
Adj(A) x = Adj(A) A B = 0.  This means that all matrix elements
of Adj(A), and therefore of A, are multiples of x.
Similarly from x Adj(B) = A B Adj(B) = 0 we see that all
matrix elements of B are multiples of x.  But that implies
that A B = 0, contradiction.

This proof relies heavily on the fact that the matrices are 
2 x 2, so that Adj is a linear operator.  I don't see how to get a counterexample in n x n matrices with n &gt; 2.  The most simpleminded generalization doesn't work: for n=4 the matrices &lt;maple&gt;A = Matrix([[x,0,0,0],[0,x,0,0],[0,0,1,0],[0,0,0,1]])&lt;/maple&gt; and &lt;maple&gt;B = Matrix([[1,0,0,0],[0,1,0,0],[0,0,x,0],[0,0,0,x]])&lt;/maple&gt; over R satisfy A B = x I with det(A) = det(B) = 0.



</itunes:summary>
      <description>The latest comments added to the Post, How Do I Find a Particular Theorem?</description>
      <guid>84367</guid>
      <pubDate>Fri, 25 Jan 2008 00:46:35 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
  </channel>
</rss>