aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/catdef.spad.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-06-27 12:31:29 +0000
committerdos-reis <gdr@axiomatics.org>2010-06-27 12:31:29 +0000
commit29325dbb1fed9b472690b8541ef038f138070aea (patch)
tree0fe97419a121dfb5517a6caaf2767944d5e82b87 /src/algebra/catdef.spad.pamphlet
parent7eabcc6358795f6a44b3771cb0cb1b659a5d08f3 (diff)
downloadopen-axiom-29325dbb1fed9b472690b8541ef038f138070aea.tar.gz
* algebra/catdef.spad.pamphlet (LinearlyExplicitRingOver)
[leftReducedSystem]: Rename from reducedSystem.
Diffstat (limited to 'src/algebra/catdef.spad.pamphlet')
-rw-r--r--src/algebra/catdef.spad.pamphlet6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/algebra/catdef.spad.pamphlet b/src/algebra/catdef.spad.pamphlet
index aa972025..4b0eb27e 100644
--- a/src/algebra/catdef.spad.pamphlet
+++ b/src/algebra/catdef.spad.pamphlet
@@ -1096,12 +1096,12 @@ LeftModule(R:Rng):Category == Join(AbelianGroup, LeftLinearSet R)
++ Description:
++ An extension of left-module with an explicit linear dependence test.
LinearlyExplicitRingOver(R:Ring): Category == LeftModule R with
- reducedSystem: Vector % -> Matrix R
- ++ \spad{reducedSystem [v1,...,vn]} returns a matrix \spad{M}
+ leftReducedSystem: Vector % -> Matrix R
+ ++ \spad{leftReducedSystem [v1,...,vn]} returns a matrix \spad{M}
++ with coefficients in \spad{R} such that the system of equations
++ \spad{c1*v1 + ... + cn*vn = 0$%} has the same solution as
++ \spad{c * M = 0} where \spad{c} is the row vector \spad{[c1,...cn]}.
- reducedSystem: (Vector %,%) -> Record(mat: Matrix R,vec: Vector R)
+ leftReducedSystem: (Vector %,%) -> Record(mat: Matrix R,vec: Vector R)
++ \spad{reducedSystem([v1,...,vn],u)} returns a matrix \spad{M}
++ with coefficients in \spad{R} and a vector \spad{w} such
++ that the system of equations \spad{c1*v1 + ... + cn*vn = u}