]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
eja: write the ALGORITHM block for the degree of an element.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 29 Jan 2023 21:38:45 +0000 (16:38 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 29 Jan 2023 21:38:45 +0000 (16:38 -0500)
mjo/eja/eja_element.py

index e1ea609efce334a9800ce162ba74d1342662da41..ef6370495333791ca30070fd658e7502ef982433 100644 (file)
@@ -795,7 +795,23 @@ class FiniteDimensionalEJAElement(IndexedFreeModuleElement):
 
         ALGORITHM:
 
-        .........
+        First we handle the special cases where the algebra is
+        trivial, this element is zero, or the dimension of the algebra
+        is one and this element is not zero. With those out of the
+        way, we may assume that ``self`` is nonzero, the algebra is
+        nontrivial, and that the dimension of the algebra is at least
+        two.
+
+        Beginning with the algebra's unit element (power zero), we add
+        successive (basis representations of) powers of this element
+        to a matrix, row-reducing at each step. After row-reducing, we
+        check the rank of the matrix. If adding a row and row-reducing
+        does not increase the rank of the matrix at any point, the row
+        we've just added lives in the span of the previous ones; thus
+        the corresponding power of ``self`` lives in the span of its
+        lesser powers. When that happens, the degree of the minimal
+        polynomial is the rank of the matrix; if it never happens, the
+        degree must be the dimension of the entire space.
 
         SETUP::
 
@@ -838,7 +854,6 @@ class FiniteDimensionalEJAElement(IndexedFreeModuleElement):
             sage: x = random_eja().random_element()
             sage: x.degree() == x.minimal_polynomial().degree()
             True
-
         """
         n = self.parent().dimension()