The Group Properties Wiki (pre-alpha)

TIP: Get tips on handling doubts and solving riders

ABOUT US: We use Semantic MediaWiki. Learn more about using Semantic MediaWiki

ALSO CHECK OUT: Diffgeom: The Differential Geometry Wiki

Normal not implies characteristic

From Groupprops

Jump to: navigation, search
This article gives the statement and possibly, proof, of a non-implication relation between two subgroup properties. That is, it states that every subgroup satisfying the first subgroup property (i.e., normal subgroup) need not satisfy the second subgroup property (i.e., characteristic subgroup)
View a complete list of subgroup property non-implications | View a complete list of subgroup property implications |Get help on looking up subgroup property implications/non-implications
Get more facts about normal subgroup|Get more facts about characteristic subgroup

Contents

Statement

A normal subgroup of a group need not be a characteristic subgroup.

Related facts

Converse

Further information: Characteristic implies normal

The converse statement is indeed true. That is, every characteristic subgroup is normal.

Other related facts

Related group properties

There are some groups in which every normal subgroup is characteristic. Further information: Group in which every normal subgroup is characteristic

Proof

Example of a direct product

Let G be any nontrivial group. Then consider K = G \times G, viz., the external direct product of G with itself. The subgroups G_1 := G \times \{ e \} and G_2 := \{ e \} \times G are direct factors of K, and are hence both normal in K. Note also that they are distinct, since G is nontrivial.

However, the exchange automorphism:

(x,y) \mapsto (y,x)

exchanges the subgroups G1 and G2. Thus, neither G1 nor G2 is invariant under all the automorphisms, so neither is characteristic. Thus, G1 and G2 are both normal subgroups of K that are not characteristic.

Note that this example also shows that direct factor does not imply characteristic subgroup.

GAP implementation

Implementation of the generic example

Before using this generic example, you need to define G for GAP, choosing any nontrivial group (double semicolons have been used here to suppress GAP's output for the first three commands, which depends on the specific choice of G -- you can use single semicolons instead).

gap> K := DirectProduct(G,G);;
gap> G1 := Image(Embedding(K,1));;
gap> G2 := Image(Embedding(K,2));;
gap> IsSubgroup(K,G1);
true
gap> IsSubgroup(K,G2);
true
gap> IsNormal(K,G1);
true
gap> IsNormal(K,G2);
true
gap> IsCharacteristicSubgroup(K,G1);
false
gap> IsCharacteristicSubgroup(K,G2);
false

References

Textbook references

  • Topics in Algebra by I. N. HersteinMore info, Page 70 (Problem 7(a))
  • Abstract Algebra by David S. Dummit and Richard M. Foote, ISBN 0471433349More info, Page 137 (Problem 6)
Personal tools