]> gitweb.michael.orlitzky.com - sage.d.git/blobdiff - mjo/eja/DESIGN
eja: propagate check_axioms to some other "check" variables.
[sage.d.git] / mjo / eja / DESIGN
index 4e34946cb96fea452599ebe844da7895f9e98010..248af84883c27d9e9fa9a4f6e9502b535126d313 100644 (file)
@@ -31,20 +31,3 @@ need to know how to undo the process. If we run Gram-Schmidt on the
 basis matrix ourselves, then we can save the matrix that undoes the
 process. And by undoing the process, we can get to a basis where
 computations are fast again.
-
-Question: what's the best way to construct these algebras? We'll
-usually know,
-
-  * the multiplication function
-  * the inner-product function
-  * a basis in either vector or matrix format
-
-and want:
-
-  * an orthonormalized copy of the basis, in long-vector format
-  * the reverse gram-schmidt matrix that deorthonormalizes that
-    long-vector basis
-  * a multiplication matrix (for speed) w.r.t. the orthonormal basis
-  * an inner-product matrix (for speed) w.r.t. the orthonormal basis
-  * a way to turn those two matrices into multiplication and inner-
-    product matrices for the deorthonormalized basis.