In
mathematics
Mathematics is an area of knowledge that includes the topics of numbers, formulas and related structures, shapes and the spaces in which they are contained, and quantities and their changes. These topics are represented in modern mathematics ...
, a right group
is an
algebraic structure
In mathematics, an algebraic structure consists of a nonempty set ''A'' (called the underlying set, carrier set or domain), a collection of operations on ''A'' (typically binary operations such as addition and multiplication), and a finite set of ...
consisting of a
set
Set, The Set, SET or SETS may refer to:
Science, technology, and mathematics Mathematics
*Set (mathematics), a collection of elements
*Category of sets, the category whose objects and morphisms are sets and total functions, respectively
Electro ...
together with a
binary operation
In mathematics, a binary operation or dyadic operation is a rule for combining two elements (called operands) to produce another element. More formally, a binary operation is an operation of arity two.
More specifically, an internal binary op ...
that combines two elements into a third element while obeying the right group
axiom
An axiom, postulate, or assumption is a statement that is taken to be true, to serve as a premise or starting point for further reasoning and arguments. The word comes from the Ancient Greek word (), meaning 'that which is thought worthy or f ...
s. The right group axioms are similar to the
group axioms, but while groups can have only one identity and any element can have only one inverse, right groups allow for multiple
identity elements and multiple
inverse elements.
It can be proven (theorem 1.27 in
) that a right group is
isomorphic
In mathematics, an isomorphism is a structure-preserving mapping between two structures of the same type that can be reversed by an inverse mapping. Two mathematical structures are isomorphic if an isomorphism exists between them. The word is ...
to the
direct product
In mathematics, one can often define a direct product of objects already known, giving a new one. This generalizes the Cartesian product of the underlying sets, together with a suitably defined structure on the product set. More abstractly, one ta ...
of a
right zero semigroup and a
group, while a right abelian group
is the direct product of a right zero semigroup and an
abelian group
In mathematics, an abelian group, also called a commutative group, is a group in which the result of applying the group operation to two group elements does not depend on the order in which they are written. That is, the group operation is commut ...
. Left group
and left abelian group
are defined in analogous way, by substituting right for left in the definitions. The rest of this article will be mostly concerned about right groups, but everything applies to left groups by doing the appropriate right/left substitutions.
Definition
A right group, originally called multiple group,
is a set
with a
binary operation
In mathematics, a binary operation or dyadic operation is a rule for combining two elements (called operands) to produce another element. More formally, a binary operation is an operation of arity two.
More specifically, an internal binary op ...
⋅, satisfying the following axioms:
; Closure
:For all
and
in
, there is an element ''c'' in
such that
.
; Associativity
:For all
in
,
.
; Left identity element
:There is at least one left identity in
. That is, there exists an element
such that
for all
in
. Such an element does not need to be unique.
; Right inverse elements
:For every
in
and every identity element
, also in
, there is at least one element
in
, such that
. Such element
is said to be the
right inverse of
with respect to
.
Examples
Direct product of finite sets
The following example is provided by.
Take the group
, the right zero semigroup
and construct a right group
as the direct product of
and
.
is simply the
cyclic group of
order
Order, ORDER or Orders may refer to:
* Categorization, the process in which ideas and objects are recognized, differentiated, and understood
* Heterarchy, a system of organization wherein the elements have the potential to be ranked a number of d ...
3, with
as its identity, and
and
as the inverses of each other.
is the right zero semigroup of order 2. Notice the each element repeats along its column, since by definition
, for any
and
in
.
The
direct product
In mathematics, one can often define a direct product of objects already known, giving a new one. This generalizes the Cartesian product of the underlying sets, together with a suitably defined structure on the product set. More abstractly, one ta ...
of these two structures is defined as follows:
* The elements of
are ordered pairs
such that
is in
and
is in
.
* The
operation is defined element-wise:
Formula 1:
The elements of
will look like
and so on. For brevity, let's rename these as
, and so on. The
Cayley table of
is as follows:
Here are some facts about
:
*
has two left identities:
and
. Some examples:
**
**
* Each element has two right inverses. For example, the right inverses of
with regards to
and
are
and
, respectively.
**
**
Complex numbers in polar coordinates
Clifford gives a second example
involving
complex numbers. Given two non-zero complex numbers ''a'' and ''b'', the following operation forms a right group:
All complex numbers with
modulus equal to 1 are left identities, and all complex numbers will have a right inverse with respect to any left identity.
The inner structure of this right group becomes clear when we use
polar coordinates
In mathematics, the polar coordinate system is a two-dimensional coordinate system in which each point on a plane is determined by a distance from a reference point and an angle from a reference direction. The reference point (analogous to the or ...
: let
and
, where ''A'' and ''B'' are the magnitudes and
and
are the
arguments (angles) of ''a'' and ''b'', respectively.
(this is not the regular multiplication of complex numbers) then becomes
. If we represent the magnitudes and arguments as ordered pairs, we can write this as:
Formula 2:
This right group is the direct product of a group (positive
real number
In mathematics, a real number is a number that can be used to measure a ''continuous'' one-dimensional quantity such as a distance, duration or temperature. Here, ''continuous'' means that values can have arbitrarily small variations. Every real ...
s under multiplication) and a right zero semigroup induced by the real numbers. Structurally, this is identical to formula 1 above. In fact, this is how all right group operations look like when written as ordered pairs of the direct product of their factors.
Complex numbers in cartesian coordinates
If we take the and complex numbers and define an operation similar to example 2 but use cartesian instead of polar coordinates and addition instead of multiplication, we get another right group, with operation defined as follows:
, or equivalently:
Formula 3:
A practical example from computer science
Consider the following example from computer science, where a set would be implemented as a programming language
type
Type may refer to:
Science and technology Computing
* Typing, producing text via a keyboard, typewriter, etc.
* Data type, collection of values used for computations.
* File type
* TYPE (DOS command), a command to display contents of a file.
* Ty ...
.
* Let
be the set of date times in an arbitrary programming language.
* Let
be the set of transformations equivalent to adding a duration to an element of
.
* Let
be the set of time zone transformations on elements of
.
Both
and
are subsets of
, the
full transformation semigroup on
.
behaves like a
group, where there is a zero duration and every duration has an inverse duration. If we treat these transformations as
right semigroup actions,
behaves like a
right zero semigroup, such that a time zone transformation always cancels any previous time zone transformation on a given date time.
Given any two arbitrary date times
and
(ignore issues regarding representation boundaries), one can find a pair of a duration and a time zone that will transform
into
. This composite transformation of time zone conversion and duration adding is isomorphic to the right group
.
Taking the java.time package as an example,
the sets
and
would correspond to the class ZonedDateTime, the function plus and the function withZoneSameInstant, respectively. More concretely, for any ZonedDateTime ''t''1 and ''t''2, there is a Duration ''d'' and a ZoneId ''z'', such that:
* t2 = t1.plus(d).withZoneSomeInstant(z)
The expression above can be written more concisely using
right action
"Right Action" is a song by Scottish indie rock band Franz Ferdinand. It was released as the lead single from their fourth studio album, ''Right Thoughts, Right Words, Right Action'', on 27 June 2013 in the United States and 18 August 2013 in t ...
notation borrowed from
group theory
In abstract algebra, group theory studies the algebraic structures known as group (mathematics), groups.
The concept of a group is central to abstract algebra: other well-known algebraic structures, such as ring (mathematics), rings, field ...
as:
It can also be verified that durations and time zones, when viewed as transformations on date/times, in addition to obeying the axioms of groups and right zero semigroups, respectively, they commute with each other. That is, for any date/time t, any duration d and any timezone z:
This is the same as saying:
References
Algebraic structures
Semigroup theory
{{abstract-algebra-stub