Complete group: Difference between revisions

From Groupprops
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{semibasicdef}}
{{group property}}
{{group property}}
{{semibasicdef}}


==Definition==
==Definition==
Line 9: Line 8:
A [[group]] is said to be '''complete''' if it satisfies the following equivalent conditions:
A [[group]] is said to be '''complete''' if it satisfies the following equivalent conditions:


* It is [[centerless group|centerless]] and every [[automorphism]] of it is [[inner automorphism|inner]]
* It is [[centerless group|centerless]] and every [[automorphism]] of it is [[inner automorphism|inner]].
* The natural homomorphism to the automorphism group that sends each element to the conjugation via that element, is an isomorphism
* The natural homomorphism to the automorphism group, that sends each element to the conjugation via that element, is an isomorphism.
* Whenever it is embedded as a [[normal subgroup]] inside a bigger group, it is actually a [[direct factor]] inside that bigger group.


===Definition with symbols===
===Definition with symbols===
Line 16: Line 16:
A [[group]] <math>G</math> is said to be '''complete''' if it satisfies the following equivalent conditions:
A [[group]] <math>G</math> is said to be '''complete''' if it satisfies the following equivalent conditions:


* <math>Z(G)</math> (viz the [[center]] of <math>G</math>) is trivial and <math>Inn(G) = Aut(G)</math> (viz every automorphism of <math>G</math> is inner)
* <math>Z(G)</math> (the [[center]] of <math>G</math>) is trivial and <math>\operatorname{Inn}(G) = \operatorname{Aut}(G)</math> (i.e., every automorphism of <math>G</math> is inner)
* The natural homomorphism <math>G \to Aut(G)</math> given by <math>g \mapsto c_g</math> (where <math>c_g = x \mapsto gxg^{-1}</math>) is an isomorphism
* The natural homomorphism <math>G \to \operatorname{Aut}(G)</math> given by <math>g \mapsto c_g</math> (where <math>c_g = x \mapsto gxg^{-1}</math>) is an isomorphism
* For any embedding of <math>G</math> as a [[normal subgroup]] of some group <math>K</math>, <math>G</math> is a [[direct factor]] of <math>K</math>
 
==Examples==
 
===Extreme examples===
 
* The [[trivial group]] is complete.
 
===Groups satisfying the property===
 
{{groups satisfying property sorted by importance rank}}
 
===Groups dissatisfying the property===
 
{{groups dissatisfying property sorted by importance rank}}
 
==Formalisms==
 
{{supergroup property collapse|normal subgroup|direct factor}}


A group <math>G</math> is complete if and only if whenever <math>G</math> is embedded as a [[normal subgroup]] in some group <math>K</math>, <math>G</math> is a direct factor of <math>K</math>.
==Relation with other properties==
==Relation with other properties==


===Stronger properties===
===Stronger properties===


* [[Symmetric group]] whose order is not 2 or 6
* [[Symmetric group]] on a set of size other than <math>2</math> or <math>6</math>: {{proofat|[[Symmetric groups on finite sets are complete]], [[Symmetric groups on infinite sets are complete]]}}
* Automorphism group of a non-Abelian [[characteristically simple group]]
* Automorphism group of a non-Abelian [[characteristically simple group]]: {{proofat|[[Characteristically simple and non-Abelian implies automorphism group is complete]]}}


===Weaker properties===
===Weaker properties===


* [[Quasi-complete group]] is a group where every automorphism is inner, but where the center may be nontrivial
* [[Stronger than::Group in which every automorphism is inner]]
* [[Centerless group]] is a group where the center is trivial
* [[Stronger than::Group in which every normal subgroup is characteristic]]
* [[EAC-true group]] is a group where every [[extensible automorphism]] is inner
* [[Stronger than::Centerless group]]
* [[Stronger than::Group isomorphic to its automorphism group]]
 
==Testing==
 
{{GAP code for group property|
test = IsCompleteGroup}}
 
While there is no built-in command to test completeness, this can be done with a short snippet of code available at [[GAP:IsCompleteGroup]]. The function is invoked as follows:
 
<pre>IsCompleteGroup(group);</pre>

Latest revision as of 05:07, 9 October 2015

This article is about a standard (though not very rudimentary) definition in group theory. The article text may, however, contain more than just the basic definition
VIEW: Definitions built on this | Facts about this: (facts closely related to Complete group, all facts related to Complete group) |Survey articles about this | Survey articles about definitions built on this
VIEW RELATED: Analogues of this | Variations of this | Opposites of this |
View a complete list of semi-basic definitions on this wiki

This article defines a group property: a property that can be evaluated to true/false for any given group, invariant under isomorphism
View a complete list of group properties
VIEW RELATED: Group property implications | Group property non-implications |Group metaproperty satisfactions | Group metaproperty dissatisfactions | Group property satisfactions | Group property dissatisfactions

Definition

Symbol-free definition

A group is said to be complete if it satisfies the following equivalent conditions:

  • It is centerless and every automorphism of it is inner.
  • The natural homomorphism to the automorphism group, that sends each element to the conjugation via that element, is an isomorphism.
  • Whenever it is embedded as a normal subgroup inside a bigger group, it is actually a direct factor inside that bigger group.

Definition with symbols

A group is said to be complete if it satisfies the following equivalent conditions:

  • (the center of ) is trivial and (i.e., every automorphism of is inner)
  • The natural homomorphism given by (where ) is an isomorphism
  • For any embedding of as a normal subgroup of some group , is a direct factor of

Examples

Extreme examples

Groups satisfying the property

Here are some basic/important groups satisfying the property:

 GAP ID
Symmetric group:S36 (1)

Here are some relatively less basic/important groups satisfying the property:


Here are some even more complicated/less basic groups satisfying the property:


Groups dissatisfying the property

Here are some basic/important groups that do not satisfy the property:


Here are some relatively less basic/important groups that do not satisfy the property:

 GAP ID
Alternating group:A6360 (118)

Here are some even more complicated/less basic groups that do not satisfy the property:


Formalisms

In terms of the supergroup property collapse operator

This group property can be defined in terms of the collapse of two subgroup properties in the following sense. Whenever the given group is embedded as a subgroup satisfying the first subgroup property (normal subgroup), in some bigger group, it also satisfies the second subgroup property (direct factor), and vice versa.
View other group properties obtained in this way

A group is complete if and only if whenever is embedded as a normal subgroup in some group , is a direct factor of .

Relation with other properties

Stronger properties

Weaker properties

Testing

GAP code

One can write code to test this group property in GAP (Groups, Algorithms and Programming), though there is no direct command for it.
View the GAP code for testing this group property at: IsCompleteGroup
View other GAP-codable group properties | View group properties with in-built commands

While there is no built-in command to test completeness, this can be done with a short snippet of code available at GAP:IsCompleteGroup. The function is invoked as follows:

IsCompleteGroup(group);