Skip to content

Commit

Permalink
TheoremOnTransitivePointedAndSubgroupd
Browse files Browse the repository at this point in the history
  • Loading branch information
s3midetnov committed Mar 25, 2024
1 parent d1d6312 commit bc9c6f9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/Algebra/Group/GSet.ard
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@
| trans : \Pi (v v' : E) -> ∃ (g : G) (g ** v = v')
}

\func PointedGroupAction (G : Group) : \Type => \Sigma (E : GroupAction G) (pt : E)

\func TransitivePointedGroupAction (G : Group) : \Type => \Sigma (E : TransitiveGroupAction G) (pt : E)

\func ActionBySubgroup {G : Group} (H : SubGroup G) : GroupAction G \cowith
-- comment $$\int_a^b $$
| E => H.Cosets
| ** (g : G) (e : H.Cosets) : H.Cosets \with {
| g, in~ a => in~ (g * a)
Expand Down Expand Up @@ -80,4 +85,12 @@
in~ (a1 * ide) ==< pmap in~ ide-right >==
in~ a1 `qed
)
}
}
\func TransitivePointedActionBySubgroup {G : Group} (H : SubGroup G) : TransitivePointedGroupAction G
=> (TransitiveActionBySubgroup H, in~ ide)

\func SubGroupByTransitivePointedAction {G : Group} (E : TransitivePointedGroupAction G) : SubGroup G => Stabilizer_ E.1 E.2
\where \func Stabilizer_ {G : Group} (E : TransitiveGroupAction G) (pt : E) : SubGroup G =>
E.Stabilizer pt

\func SubgroupsAreTransitiveActions (G : Group) : SubGroup G = TransitivePointedGroupAction G => {?}
5 changes: 5 additions & 0 deletions src/Algebra/Group/Sub.ard
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@
(q : \Pi (g : G) -> K.contains g -> N.contains g)
=> \lam (g : G) (r : H.contains g) => q g (p g r)

\instance SubGroupPoset {G : Group} : Poset (SubGroup G)
| Preorder => SubGroupPreorder
| <=-antisymmetric {x y : SubGroup G} : (\Pi (g : G) -> x g -> y g) -> (\Pi (g : G) -> y g -> x g) -> x = y =>
\lam p q =>

\class NormalSubGroup \extends SubGroup {
| isNormal (g : S) {h : S} : contains h -> contains (conjugate g h)

Expand Down

0 comments on commit bc9c6f9

Please sign in to comment.