General linear group:GL(2,Z4): Difference between revisions

From Groupprops
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 3: Line 3:
==Definition==
==Definition==


This group, denoted <math>GL(2,\mathbb{Z}_4)</math> or <math>GL(2,\mathbb{Z}/4\mathbb{Z})</math>, is defined as the [[defining ingredient::general linear group of degree two]] over the ring of integers modulo <math>4</math>.
This group can be defined in the following equivalent ways:


# It is the group <math>GL(2,\mathbb{Z}_4)</math> or <math>GL(2,\mathbb{Z}/4\mathbb{Z})</math>, i.e., the [[defining ingredient::general linear group of degree two]] over the ring of integers modulo <math>4</math>.
# It is the group <math>GL(2,\mathbb{F}_2[t]/(t^2))</math>, i.e., the [[general linear group of degree two]] over the ring <math>\mathbb{F}_2[t]/(t^2)</math>.
Note that although the rings in question are different, the corresponding general linear groups are isomorphic. This behavior is specific to the cases <math>p = 2</math> and <math>p = 3</math>. The isomorphism can be traced to the fact that the quotient map:
<math>GL(2,\mathbb{Z}/4\mathbb{Z}) \to GL(2,\mathbb{Z}/2\mathbb{Z})</math>
has a section, i.e., the corresponding short exact sequence splits. See also [[isomorphic general linear groups not implies isomorphic rings]].
==Arithmetic functions==
{| class="sortable" border="1"
! Function !! Value !! Similar groups !! Explanation
|-
| {{arithmetic function value order|96}} || As <math>GL(2,R)</math>, <math>R</math> a discrete valuation ring of length <math>l = 2</math> with residue field of size <math>q = 2</math>: <math>q^{4l - 3}(q - 1)(q^2 - 1) = 2^5(1)(3) = 96</math>
|-
| {{arithmetic function value given order|exponent of a group|12|96}} ||
|-
| [[nilpotency class]] || -- || || not a nilpotent group
|-
| {{arithmetic function value given order|derived length|3|96}} ||
|}
==GAP implementation==
==GAP implementation==


Line 11: Line 33:
===Other descriptions===
===Other descriptions===


The group can also be defined using the [[GAP:GeneralLinearGroup]] and [[GAP:ZmodnZ|ZmodnZ]] functions:
{| class="sortable" border="1"
 
! Description !! Functions used
<pre>GL(2,ZmodnZ(4))</pre>
|-
| <tt>GL(2,ZmodnZ(4))</tt> || [[GAP:GL|GL]] and [[GAP:ZmodnZ|ZmodnZ]]
|}

Latest revision as of 22:21, 19 September 2012

This article is about a particular group, i.e., a group unique upto isomorphism. View specific information (such as linear representation theory, subgroup structure) about this group
View a complete list of particular groups (this is a very huge list!)[SHOW MORE]

Definition

This group can be defined in the following equivalent ways:

  1. It is the group or , i.e., the general linear group of degree two over the ring of integers modulo .
  2. It is the group , i.e., the general linear group of degree two over the ring .

Note that although the rings in question are different, the corresponding general linear groups are isomorphic. This behavior is specific to the cases and . The isomorphism can be traced to the fact that the quotient map:

has a section, i.e., the corresponding short exact sequence splits. See also isomorphic general linear groups not implies isomorphic rings.

Arithmetic functions

Function Value Similar groups Explanation
order (number of elements, equivalently, cardinality or size of underlying set) 96 groups with same order As , a discrete valuation ring of length with residue field of size :
exponent of a group 12 groups with same order and exponent of a group | groups with same exponent of a group
nilpotency class -- not a nilpotent group
derived length 3 groups with same order and derived length | groups with same derived length

GAP implementation

Group ID

This finite group has order 96 and has ID 195 among the groups of order 96 in GAP's SmallGroup library. For context, there are groups of order 96. It can thus be defined using GAP's SmallGroup function as:

SmallGroup(96,195)

For instance, we can use the following assignment in GAP to create the group and name it :

gap> G := SmallGroup(96,195);

Conversely, to check whether a given group is in fact the group we want, we can use GAP's IdGroup function:

IdGroup(G) = [96,195]

or just do:

IdGroup(G)

to have GAP output the group ID, that we can then compare to what we want.


Other descriptions

Description Functions used
GL(2,ZmodnZ(4)) GL and ZmodnZ