OpenMath Content Dictionary: group1

Canonical URL:
http://www.openmath.org/cd/group1.ocd
CD Base:
http://www.openmath.org/cd
CD File:
group1.ocd
CD as XML Encoded OpenMath:
group1.omcd
Defines:
multiplication, carrier, expression, group, identity, inversion, is_commutative, is_normal, is_subgroup, monoid, normal_closure, power, subgroup
Date:
1999-05-10
Version:
3
Review Date:
2003-04-01
Status:
experimental

A CD of basic functions for group theory

Written by A. Solomon on 1998-11-19
Modified by David Carlisle 1998-04-28
Severely edited by Arjeh M. Cohen in 2003

group

Description:

This symbol is a constructor for groups. It takes four arguments in the following order: a set to specify the elements in the group, a binary operation to specify the group operation, an element to specify the identity, and a unary operation to specify inverses of group elements. Both the binary and unary operations should act on elements of the set and return an element of the set.

Commented Mathematical property (CMP):
A group is closed under its operation. A groups operation is associative. A group has an identity element. Every element of a group has an inverse.
Formal Mathematical property (FMP):
G = group ( set , binop , elt , unop ) ( x set y set binop ( x , y ) set ) binop ( x , binop ( y , z ) ) = binop ( binop ( x , y ) , z ) elt set x . x set binop ( elt , x ) = x binop ( x , elt ) = x x . x set binop ( x , unop ( x ) ) = elt
Example:
This example represents the group which has as elements all positive and negative even numbers, the group operation is binary addition, inverses are the negative of the element and the identity is the zero element.
group ( { x Z | x 2 Z } , + , 0 , - )
Signatures:
sts


[Next: carrier] [Last: is_normal] [Top]

carrier

Description:

This symbol represents a unary function, whose argument should be a group G (for instance constructed by group). When applied to G, its value should be the set of elements of G.

Example:
The carrier of group(G,*,e,inverse) is G.
carrier ( group ( G , times , e , inverse ) ) = G
Signatures:
sts


[Next: multiplication] [Previous: group] [Top]

multiplication

Description:

This symbol represents a unary function, whose argument should be a group G. It returns the multiplication map on G. We allow for the map to be n-ary.

Example:
The multiplication of group(G,*,inverse,e) is *.
multiplication ( group ( G , times , e , inverse ) ) = times
Signatures:
sts


[Next: inversion] [Previous: carrier] [Top]

inversion

Description:

This symbol represents a unary function, whose argument should be a group G. It returns the map sending an element of G to its inverse.

Example:
The inversion of group(G,*,e,inverse) is inverse.
inversion ( group ( G , times , e , inverse ) ) = inverse
Signatures:
sts


[Next: identity] [Previous: multiplication] [Top]

identity

Description:

This symbols represents a unary function, whose argument should be a group. It returns the identity element of the group.

Example:
The identity of group(G,*,e,inverse) is e.
identity ( group ( G , times , e , inverse ) ) = e
Signatures:
sts


[Next: is_commutative] [Previous: inversion] [Top]

is_commutative

Description:

The unary boolean function whose value is true iff the argument is a commutative group.

Commented Mathematical property (CMP):
If is_commutative(G) then for all a,b in carrier(G) a*b = b*a
Formal Mathematical property (FMP):
is_commutative ( G ) a , b . a carrier ( G ) b carrier ( G ) multiplication ( G ) = a = b
Signatures:
sts


[Next: is_subgroup] [Previous: identity] [Top]

is_subgroup

Description:

The binary boolean function whose value is true iff the second argument is a subgroup of the second.

Commented Mathematical property (CMP):
If is_subgroup(G,H) then H is a nonempty set of elements of G and H is closed under multiplication and taking inverses.
Signatures:
sts


[Next: monoid] [Previous: is_commutative] [Top]

monoid

Description:

This symbol is a unary function, whose argument should be a group G. When applied to G its value is the monoid underlying G.

Example:
monoid ( G )
Signatures:
sts


[Next: subgroup] [Previous: is_subgroup] [Top]

subgroup

Description:

This symbol is a constructor symbol with one or two arguments. The first argument is a list or set, D, of group elements. The optional second argument is the group G containing D. It denotes the subgroup of G generated by D.

Example:
subgroup ( D , G )
Example:
This example represents the subgroup of the multiplicative group of the nonzero reals generated by the constants Pi and E:
subgroup ( ( π , e ) , group ( { x R | x 0 } , × , 1 , inverse ) )
Signatures:
sts


[Next: power] [Previous: monoid] [Top]

power

Description:

This is a symbol with three arguments. The first argument is a group G. Its second argument is an element g of G and the third argument is an integer k. It denotes the element g^k in G.

Example:
power ( group ( Z , + , 0 , - ) , 3 , 2 ) = 6
Signatures:
sts


[Next: expression] [Previous: subgroup] [Top]

expression

Description:

This symbol is a function with two arguments. Its first argument should be a group. The second should be an arithmetic expression A, whose operators are times and power, and whose leaves are members of the carrier of G. When applied to G and A, it denotes the element (of G) that is obtained from the leaves of A by applying the multiplication and the power map of G instead of the times and power from the CD arith1 appearing in A. The symbol alg1.one occurring in A will be interpreted as the identity of G.

Example:
expression ( group ( Z , + , 0 , - ) , 6 × 3 ) = 9
Signatures:
sts


[Next: normal_closure] [Previous: power] [Top]

normal_closure

Description:

The binary function whose value is the set of conjugates of the elements of the second group by elements of the first, where multiplication between them is defined.

Commented Mathematical property (CMP):
n in the normal closure (A,B) implies there exists a in A and b in B s.t. n = b^(-1) a b
Formal Mathematical property (FMP):
n normal_closure ( A , B ) a , b . a carrier ( A ) b carrier ( B ) n = invb a b invb b = 1
Signatures:
sts


[Next: is_normal] [Previous: expression] [Top]

is_normal

Description:

If G, H are the group arguments, then IsNormal(G,H) returns true precisely when H is normal in G. That is, inverse(g)*h*g is defined and contained in H for all h in H and g in G.

Commented Mathematical property (CMP):
is_normal(G,H) implies that for all g in G and h in H then inverse(g)*h*g is in H.
Formal Mathematical property (FMP):
is_normal ( G , H ) g , h . g carrier ( G ) h carrier ( H ) invg h g carrier ( H )
Signatures:
sts


[First: group] [Previous: normal_closure] [Top]