From e2f2aa242f4809374bac0be2a23257f493a76a4d Mon Sep 17 00:00:00 2001 From: mabshoff Date: Fri, 22 Feb 2008 15:48:02 -0800 Subject: [PATCH] Fix one small LaTeX issue in matrix_integer_dense.pyx caught by malb --- src/sage/matrix/matrix_integer_dense.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/matrix/matrix_integer_dense.pyx b/src/sage/matrix/matrix_integer_dense.pyx index e5e3d477951..0cfb6a5da6a 100644 --- a/src/sage/matrix/matrix_integer_dense.pyx +++ b/src/sage/matrix/matrix_integer_dense.pyx @@ -1342,7 +1342,7 @@ cdef class Matrix_integer_dense(matrix_dense.Matrix_dense): # dense or sparse 3. Check max_dets random dets of submatrices to see if their gcd (with p) is 1 -- if so matrix is saturated and we're done. 4. Finally, use that if A is a matrix of full rank, then - $hnf(transpose(A))^(-1)*A$ + $hnf(transpose(A))^{-1}*A$ is a saturation of A. EXAMPLES: