aboutsummaryrefslogtreecommitdiff
path: root/mathcomp/algebra
diff options
context:
space:
mode:
authorAntonio Nikishaev2020-04-08 00:32:35 +0400
committerAntonio Nikishaev2020-04-08 01:34:03 +0400
commitbfd4b28b835e6918d7f4dea848c8b94f4c1c6f7f (patch)
tree5eda6b55c8907856c311c798b8ff5dc8fb7ca82c /mathcomp/algebra
parent815d3cbfa2bf98b4b8f2bcd14819a20eca843e78 (diff)
fix typos in documentation: formulae
Diffstat (limited to 'mathcomp/algebra')
-rw-r--r--mathcomp/algebra/matrix.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/mathcomp/algebra/matrix.v b/mathcomp/algebra/matrix.v
index dfdaf8b..f49473f 100644
--- a/mathcomp/algebra/matrix.v
+++ b/mathcomp/algebra/matrix.v
@@ -129,7 +129,7 @@ From mathcomp Require Import div prime binomial ssralg finalg zmodp countalg.
(* - The Cramer rule : mul_mx_adj & mul_adj_mx. *)
(* Finally, as an example of the use of block products, we program and prove *)
(* the correctness of a classical linear algebra algorithm: *)
-(* cormenLUP A == the triangular decomposition (L, U, P) of a nontrivial *)
+(* cormen_lup A == the triangular decomposition (L, U, P) of a nontrivial *)
(* square matrix A into a lower triagular matrix L with 1s *)
(* on the main diagonal, an upper matrix U, and a *)
(* permutation matrix P, such that P * A = L * U. *)