当前位置:新励学网 > 秒知问答 > 4次对称群的元素的阶数怎么求

4次对称群的元素的阶数怎么求

发表时间:2024-07-28 07:25:05 来源:网友投稿

1四阶对称群S4有24个元素:

a = SymmetricGroup;

GroupOrder[a];

b = GroupElements[a]

其中的单位元是Cycles[{}],表示不变。

2对于S4里面的元素x,代表了一种轮换。

比如:

Permute[{p, q, r, s}, Cycles[{{3, 4}}]]

把{p, q, r, s}的第三个元素和第四个元素轮换一下。

3Permute[{p, q, r, s}, Cycles[{{2, 3, 4}}]]

第四个元素跑到第二个位置上,第二个和第三个向右移动一个位置。

4设x和y是S4的两个元素,那么xy表示先执行y,再执行x。

PermutationProduct[y,x]表示xy。

比如:

PermutationProduct[Cycles[{{2, 3, 4}}], Cycles[{{1, 2}}]]

Permute[{p, q, r, s}, %]

结果和下面的一样:

Permute[{p, q, r, s}, Cycles[{{2, 3, 4}}]];

Permute[%, Cycles[{{1, 2}}]]

5产生S4的乘法表:

TableForm[GroupMultiplicationTable[a], TableHeadings -> Automatic]

6查看S4里面,所有的二阶元素:

c=If[# != Cycles[{}] PermutationProduct[#, #] == Cycles[{}], #,

0] /@ b // Union // Drop[#, 1]

一共有9个。

7c加上单位元,能构成一个S4的子群吗?

看看它的乘法表:

c = If[PermutationProduct[#, #] == Cycles[{}], #, 0] /@ b // Union //

Drop[#, 1]

TableForm[Table[PermutationProduct[m, n][], {m, c}, {n, c}],

TableSpacing -> {5, 2}]

免责声明:本站发布的教育资讯(图片、视频和文字)以本站原创、转载和分享为主,文章观点不代表本网站立场。

如果本文侵犯了您的权益,请联系底部站长邮箱进行举报反馈,一经查实,我们将在第一时间处理,感谢您对本站的关注!