[back] [prev] [next] [index] [root]

 


AbelianGroupEltMove

Moves an element from a subgroup into a supergroup.

Syntax:

elt2 := AbelianGroupEltMove(elt1, g);

group
  g  
group element
  elt1  
group element
  elt2  
element of the group g

Description:

Returns the representation elt2 of elt1 in the group g.


Example:

Move an element from a subgroup s of g into g:

kash> g := AbelianGroupCreate([[0,1,2],[5,6,0],[0,4,5]]);
Group with relations:
[0 1 2]
[5 6 0]
[0 4 5]
kash> s := AbelianSubGroup(g, [3,3,3]);
Group with relations:
[5]
kash> elt1 := AbelianGroupEltCreate(s, [2]);
[2]
kash> elt2 := AbelianGroupEltMove(elt1, g);
> [6 6 6]


<- back[back] [prev] [next] [index] [root]