首页 > 其他分享 >【Basic Abstract Algebra】Exercises for Section 2.5 — Dihedral groups

【Basic Abstract Algebra】Exercises for Section 2.5 — Dihedral groups

时间:2024-12-22 13:52:24浏览次数:6  
标签:13524 12 Dihedral Algebra Abstract 35 15432 14253 Section

  1. Write down the dihedral group \(D_5\).
    Solution: \(D_5=\lang r,s\mid s^2=r^5=1,~srs=r^{-1}\rang\), where \(r=(12345),~s=(15)(24)\), i.e. \(D_5=\{\text{id},s,r,r^2,r^3,r^4,rs,r^2s,r^3s,r^4s\}\). We have

    \[\begin{aligned} &r^2=(13524),~r^3=(14253),~r^4=(15432),\\ &rs=(25)(34),~r^2s=(12)(35),\\ &r^3s=(13)(45),~r^4s=(14)(23). \end{aligned} \]

    Thus

    \[D_5=\{(1),(12)(35),(12345),(13524),(14253),(15432),(25)(34),(12)(35),(13)(45),(14)(23)\}. \quad \# \]

  2. Prove that \(D_n\) is a proper subgroup of \(S_n\) for \(n>3\).
    Proof: By Thm2.5.2, we have \(D_n\subseteq S_n\) and \(| D_n |=2n,~|S_n|=n!~(n\ge 3)\). If \(D_n\) is a proper subgroup of \(S_n\), then \(n!>2n\Rightarrow (n-1)!>2\Rightarrow n>3\).

  3. Show that \(r^ks=sr^{-k}\).
    Proof: mathematical induction.

标签:13524,12,Dihedral,Algebra,Abstract,35,15432,14253,Section
From: https://www.cnblogs.com/sufewsj/p/18622049

相关文章

  • 【Basic Abstract Algebra】Exercises for Section 2.4 — Permutation groups
    Computetheinverseof\((465312)\).Solution:Since\((465312)=(42)(41)(43)(45)(46)\),wehave\((465312)^{-1}=(46)(45)(43)(41)(42)=(421356)\).#Let\(G\)beagroupanddefineamap\(\lambda_g:G\toG\)by\(\lambda_g(a)=ga\).Provet......
  • 【Basic Abstract Algebra】Exercises for Section 2.2 — Subgroups
    Let\(H\)beasubgroupof\(G\),if\(g\inG\),showtha\[gHg^{-1}=\{g^{-1}hg\midh\inH\}\]isalsoasubgroupof\(G\).Proof:Since\(e~(\text{identity})\ingHg^{-1}\subseteqG\),\(gHg^{-1}\)isnonempty.Forany\(g^{-1}h_1g,......
  • QAbstractBarSeries 类
    QAbstractBarSeries类QAbstractBarSeries是Qt图表模块中所有柱状图系列类的抽象父类。它用于定义柱状图的基本行为和属性,如柱宽、标签位置、数据管理等。核心功能与特点支持多种柱状图系列:继承类包括:QBarSeries、QStackedBarSeries、QPercentBarSeries、QHorizont......
  • 【Basic Abstract Algebra】Exercises for Section 1.5
    Let\(a\)beanonzerointegerand\(n\neq0\)beanaturalnumber.Then\(\gcd(a,n)=1\)ifandonlyifthereexistsamultiplicationinverse\(b\)suchthat\(ab\equiv1(\modn)\).Proof:\((\Longrightarrow)\)Let\(\gcd(a,b)=1\),the......
  • 了解AQS(AbstractQueuedSynchronizer)
    AQS(AbstractQueuedSynchronizer)是Java并发包中的一个核心同步器框架,它定义了一套多线程访问共享资源的同步机制。一、AQS的定义AQS,全称AbstractQueuedSynchronizer,即抽象队列同步器,是Java中的一个抽象类。它是构建锁或者其他同步组件的基础框架,通过继承AQS,子类可以实现自己的......
  • JDK17 AbstractQueuedSynchronizer 二 条件队列
    条件队列同步队列中的线程是为了争抢锁,而条件队列中的线程是主动释放锁,挂起自己,等条件满足时被别的线程唤醒,继续工作。AQS里只有1个同步队列,但可以有多个等待队列,每个等待队列对应一个ConditionObject对象。publicstaticvoidmain(String[]args){ ReentrantLocklo......
  • JDK17 AbstractQueuedSynchronizer 一 同步队列
    AQS抽象队列同步器是JDK提供的用于管理线程间同步状态的类。常见的同步器类ReentrantLock,CountDownLatch,Semaphore等都是AbstractQueuedSynchronizer的子类。AQS提供三个功能提供同步状态。一个是state属性,管理资源的状态。一个是AQS的父抽象类的exclusiveOwnerThread......
  • Zariski交换代数经典教材Commutative Algebra系列(pdf可复制版)
    Zariski的名字估计学代数几何的人都耳熟能详,先是入门时期的交换代数教材,然后就是深入研究时期随处可见的Zariski拓扑。本帖我们分享的便是著名的Zariski交换代数教材。OscarZariski&PierreSamuel写的交换代数经典教材CommutativeAlgebra,该教材也是学习代数几何的经典......
  • Qt 模型视图(四):代理类QAbstractItemDelegate
    文章目录Qt模型视图(四):代理类`QAbstractItemDelegate`1.基本概念1.1.使用现有代理1.2.一个简单的代理2.提供编辑器3.向模型提交数据4.更新编辑器的几何图形5.编辑提示Qt模型视图(四):代理类QAbstractItemDelegate​模型/视图结构是一种将数据存储和界面展示分......
  • 代数模型(Algebraic Models)---线性规划------+ 案例 + Python源码求解(见文中)
    目录一、代数模型(AlgebraicModels)详解1.1什么是代数模型?1.2代数模型的基本形式1.3安装所需要的Python包--运行下述案例1.4代数模型的应用案例案例1:市场供需平衡模型Python求解代码Python求解结果如下图:案例2:运输问题中的线性规划模型进行数学建模分析1.目标函数2.......