]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
eja: add operator_commutes_with() for elements.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 16 Jul 2019 20:51:12 +0000 (16:51 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 29 Jul 2019 03:19:01 +0000 (23:19 -0400)
mjo/eja/euclidean_jordan_algebra.py

index 1426d5e16be4b6acc7c68a4494e2c6f1c4d61819..4713ff0859876b5832e6e5e9551f632444c6a138 100644 (file)
@@ -161,6 +161,43 @@ class FiniteDimensionalEuclideanJordanAlgebra(FiniteDimensionalAlgebra):
                 raise NotImplementedError('irregular element')
 
 
+        def operator_commutes_with(self, other):
+            """
+            Return whether or not this element operator-commutes
+            with ``other``.
+
+            EXAMPLES:
+
+            The definition of a Jordan algebra says that any element
+            operator-commutes with its square::
+
+                sage: set_random_seed()
+                sage: x = random_eja().random_element()
+                sage: x.operator_commutes_with(x^2)
+                True
+
+            TESTS:
+
+            Test Lemma 1 from Chapter III of Koecher::
+
+                sage: set_random_seed()
+                sage: J = random_eja()
+                sage: u = J.random_element()
+                sage: v = J.random_element()
+                sage: lhs = u.operator_commutes_with(u*v)
+                sage: rhs = v.operator_commutes_with(u^2)
+                sage: lhs == rhs
+                True
+
+            """
+            if not other in self.parent():
+                raise ArgumentError("'other' must live in the same algebra")
+
+            A = self.matrix()
+            B = other.matrix()
+            return (A*B == B*A)
+
+
         def det(self):
             """
             Return my determinant, the product of my eigenvalues.