Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Minor changes to the documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfeulner committed Dec 29, 2013
1 parent c297a9a commit d8cd6e3
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 21 deletions.
@@ -1,29 +1,33 @@
r"""
Elements of a semimonomial transformation group
Elements of a semimonomial transformation group.
A semimonomial transformation group over a ring `R` of length `n` is equal to
The semimonomial transformation group over a ring `R` of length `n` is equal to
the semidirect product of the monomial transformation group
(also known as the complete monomial group) and the group of ring automorphisms.
The multiplication of two elements `(\phi, \pi, \alpha)(\psi, \sigma, \beta)`
with
- `\phi, \psi \in {R^*}^n`
- `\pi, \sigma \in S_n`
- `\pi, \sigma \in S_n` (with the multiplication `\pi * \sigma`
done from left to right (like in GAP) --
that is, `(\pi * \sigma)(i) = \sigma(\pi(i))` for all `i`.)
- `\alpha, \beta \in Aut(R)`
is defined by:
is defined by
.. math::
(\phi, \pi, \alpha)(\psi, \sigma, \beta) =
(\phi * \psi^{\pi, \alpha}, \pi * \sigma, \alpha * \beta)
(\phi, \pi, \alpha)(\psi, \sigma, \beta) =
(\phi * \psi^{\pi, \alpha}, \pi * \sigma, \alpha * \beta)
where
with
`\psi^{\pi, \alpha} = (\alpha(\psi_{\pi(0)}), \ldots, \alpha(\psi_{\pi(n-1)}))`
and an elementwisely defined multiplication of vectors.
The parent is
:class:`~sage.groups.semimonomial_transformations.semimonomial_transformation_group.SemimonomialTransformationGroup`.
Expand Down Expand Up @@ -86,7 +90,7 @@ def _inverse(f, R):

cdef class SemimonomialTransformation(MultiplicativeGroupElement):
r"""
An element in a semimonomial group. See
An element in the semimonomial group over a ring `R`. See
:class:`~sage.groups.semimonomial_transformations.semimonomial_transformation_group.SemimonomialTransformationGroup`
for the details on the multiplication of two elements.
Expand Down Expand Up @@ -167,6 +171,30 @@ cdef class SemimonomialTransformation(MultiplicativeGroupElement):

cpdef MonoidElement _mul_(left, MonoidElement _right):
"""
Multiplication of elements.
The multiplication of two elements `(\phi, \pi, \alpha)` and
`(\psi, \sigma, \beta)` with
- `\phi, \psi \in {R^*}^n`
- `\pi, \sigma \in S_n`
- `\alpha, \beta \in Aut(R)`
is defined by:
.. math::
(\phi, \pi, \alpha)(\psi, \sigma, \beta) =
(\phi * \psi^{\pi, \alpha}, \pi * \sigma, \alpha * \beta)
with
`\psi^{\pi, \alpha} = (\alpha(\psi_{\pi(0)}), \ldots, \alpha(\psi_{\pi(n-1)}))`
and an elementwisely defined multiplication of vectors. Furthermore,
the multiplication `\pi * \sigma` is done from left to right (like in GAP) --
that is, `(\pi * \sigma)(i) = \sigma(\pi(i))` for all `i`.
EXAMPLES::
sage: F.<a> = GF(9)
Expand Down
@@ -1,17 +1,19 @@
r"""
Semimonomial transformation group
A semimonomial transformation group over a ring `R` of length `n` is equal to
The semimonomial transformation group over a ring `R` of length `n` is equal to
the semidirect product of the monomial transformation group
(also known as the complete monomial group) and the group of ring automorphisms.
The multiplication of two elements `(\phi, \pi, \alpha)(\psi, \sigma, \beta)`
with
- `\phi, \psi \in {R^*}^n`
- `\pi, \sigma \in S_n` (with `(\pi * \sigma)(i) = \sigma(\pi(i))`)
- `\alpha, \beta \in Aut(R)`
- `\phi, \psi \in {R^*}^n`
- `\pi, \sigma \in S_n` (with the multiplication `\pi * \sigma`
done from left to right (like in GAP) --
that is, `(\pi * \sigma)(i) = \sigma(\pi(i))` for all `i`.)
- `\alpha, \beta \in Aut(R)`
is defined by
Expand All @@ -20,10 +22,15 @@
(\phi, \pi, \alpha)(\psi, \sigma, \beta) =
(\phi * \psi^{\pi, \alpha}, \pi * \sigma, \alpha * \beta)
where
with
`\psi^{\pi, \alpha} = (\alpha(\psi_{\pi(0)}), \ldots, \alpha(\psi_{\pi(n-1)}))`
and an elementwisely defined multiplication of vectors.
.. TODO::
Up to now, this group is only implemented for finite fields because of
the limited support of automorphisms for arbitrary rings.
AUTHORS:
- Thomas Feulner (2012-11-15): initial version
Expand Down Expand Up @@ -51,7 +58,7 @@

class SemimonomialTransformationGroup(FiniteGroup, UniqueRepresentation):
r"""
A semimonomial transformation group over a ring `R` of
The semimonomial transformation group over a ring `R` of
degree `n`.
The semimonomial transformation group of degree `n` of `R`
Expand All @@ -63,7 +70,9 @@ class SemimonomialTransformationGroup(FiniteGroup, UniqueRepresentation):
- `\phi, \psi \in {R^*}^n`
- `\pi, \sigma \in S_n`
- `\pi, \sigma \in S_n` (with the multiplication `\pi * \sigma`
done from left to right (like in GAP) --
that is, `(\pi * \sigma)(i) = \sigma(\pi(i))` for all `i`.)
- `\alpha, \beta \in Aut(R)`
Expand All @@ -74,10 +83,10 @@ class SemimonomialTransformationGroup(FiniteGroup, UniqueRepresentation):
(\phi, \pi, \alpha)(\psi, \sigma, \beta) =
(\phi * \psi^{\pi, \alpha}, \pi * \sigma, \alpha * \beta)
where
with
`\psi^{\pi, \alpha} = (\alpha(\psi_{\pi(0)}), \ldots, \alpha(\psi_{\pi(n-1)}))`
and an elementwisely defined multiplication of vectors.
.. TODO::
Up to now, this group is only implemented for finite fields because of
Expand Down

0 comments on commit d8cd6e3

Please sign in to comment.