cosets[T:Type+,*:[T,T->T],one:T]: THEORY %------------------------------------------------------------------------------ % Left and Right Cosets % % Author: Rick Butler, NASA Langley % Adapted from work done by David Lester, Manchester % % Version 1.0 12/12/07 % % This theory defines convenient notation: % % a*H -- left coset % H*a -- right coset % %------------------------------------------------------------------------------
BEGIN %------------------------------------------------------------------------ % The imported type T with * and one must be a group. % From this foundation other groups are created. These are just subgroups of the % underlying imported type. %------------------------------------------------------------------------ ASSUMINGIMPORTING group_def[T,*,one]
fullset_is_group: ASSUMPTION group?(fullset[T])
ENDASSUMING
IMPORTING group[T,*,one]
S,R: VAR set[T]
H,G: VAR group
a,b,x,y,z: VAR T
m: VAR nat
right_coset_is: LEMMA subgroup?(H,G) AND member(a,G) IMPLIES
right_coset(G,H)(a) = {x: T | congruent_mod(G,H)(a,x)}
right_coset_def : LEMMA subgroup?(H,G) AND member(a,G) IMPLIES
right_coset(G,H)(a) = H*a
% Herstein Lemma 2.4.5
nonempty_right_coset: LEMMA subgroup?(H,G) AND member(a,G) IMPLIES nonempty?(right_coset(G,H)(a))
right_coset_correspondence: LEMMAFORALL (A,B:set[T]):
subgroup?(H,G) AND member(a,G) AND member(b,G) AND
A = right_coset(G,H)(a) AND B = right_coset(G,H)(b) IMPLIES EXISTS (f:[(A)->(B)]): bijective?(f)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.