RightModule RΒΆ

catdef.spad line 1328 [edit on github]

The category of right modules over an rng (ring not necessarily with unit). This is an abelian group which supports right multiplation by elements of the rng.

0: % if R has AbelianMonoid

from AbelianMonoid

*: (%, R) -> %

x*r returns the right multiplication of the module element x by the ring element r.

*: (Integer, %) -> % if R has AbelianGroup

from AbelianGroup

*: (NonNegativeInteger, %) -> % if R has AbelianMonoid

from AbelianMonoid

*: (PositiveInteger, %) -> %

from AbelianSemiGroup

+: (%, %) -> %

from AbelianSemiGroup

-: % -> % if R has AbelianGroup

from AbelianGroup

-: (%, %) -> % if R has AbelianGroup

from AbelianGroup

=: (%, %) -> Boolean

from BasicType

~=: (%, %) -> Boolean

from BasicType

coerce: % -> OutputForm

from CoercibleTo OutputForm

latex: % -> String

from SetCategory

opposite?: (%, %) -> Boolean if R has AbelianMonoid

from AbelianMonoid

sample: % if R has AbelianMonoid

from AbelianMonoid

subtractIfCan: (%, %) -> Union(%, failed) if R has AbelianGroup

from CancellationAbelianMonoid

zero?: % -> Boolean if R has AbelianMonoid

from AbelianMonoid

AbelianGroup if R has AbelianGroup

AbelianMonoid if R has AbelianMonoid

AbelianSemiGroup

BasicType

CancellationAbelianMonoid if R has AbelianGroup

CoercibleTo OutputForm

SetCategory