Want to take part in these discussions? Sign in if you have an account, or apply for one below
Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
I created a stub for stabilizer subgroup as it was needed by orbit.
This could do with a nPOV section, but I am not sure what to say for that. (I am still not sure how to ‘do’ an nPOV version of all the stuff around group actions. I would love to have it clear in my head as then a straightforward nPOV adaption of Grothendieck in SGA1 would be feasible. The treatment of SGA1 in the nLab still has some holes in it… e.g. the transition from the prorepresenting to the profinite group . I hope to sketch a bit more detail there soon. In fact a lot of the detail is skated over in the original SGA1. Any thoughts anyone?)
This could do with a nPOV section
I have added it here.
Hm, the server went down briefly after my edit.
So here is roughly what I typed: a group action is equivalently encoded in the corresponding action groupoid, which is the -associated bundle to the the universal -bundle . The stabilizer group of an element is the first homotopy group of at this point. Or, what is equivalent for 1-groups, it is the loop space object .
(Hm, of course also the formulas don’t all display as long as the nLab server is down…)
In this last formulation the notion directly generalizes to stabilizer -groups of -group actions. And all of this goes through for cohesive -groups, too.
This is also in section 2.3.7 here. (Which of course is, however, also not available as long as the server is down.)
Is there any need to revisit this thread, e.g., Mike’s suggestion?
While stabilizer group, isotropy group, isotropy subgroup, stabilizer subgroup and small group are also used, I think that the modern default is the shortest: just stabilizer. The latter term subsumes also the categorified versions.
Is there any need to revisit this thread, e.g., Mike’s suggestion?
Okay, sure. I had forgotten about this.
First, over there is discussed the stabilizer of a general morphism , whereas I was here talking about stabilizers of global elements only.
Second, there the action in -categories is at least alluded to, whereas what I wrote here is for -categories.
So there is room to generalize.
What I don’t see right now is how Mike’s suggestion gives a group object, in general. What Mike defines one can think of as producing the homotopy fixed point data fibered over the group (over each element of the group the data that makes a homotopy fixed point under .) How is that a group object?
(I am genuinely asking, I don’t see it right now.)
First, over there is discussed the stabilizer of a general morphism , whereas I was here talking about stabilizers of global elements only.
Of course the definition of stabilizer -groups as here immediately generalizes to this case:
for an action on , and any other object, there is an induced action on the internal hom leading to an action -groupoid . So now for given we can form the stabilizer -group .
edit:
as action -groupoids we obtain from as the -pullback
where the bottom morphism picks the trivial cocycle and its global automorphisms (meaning that acts by the same element on all points of at once, as it should). So the bottom morphism is the hom-adjunct to the projection .
Finally, I should say, for the definition that I was looking at, that and how there is a canonical morphism from the stabilizer -group to the -group . It’s given by the top left morphism in the pasting diagram of homotopy pullbacks
edit:
what is maybe noteworthy here is that this is just producing the long fiber sequence for the case where we regard and as objects pointed by . So here is simply the looping of the representation itself:
I believe the two definitions are actually the same, both in the case of global points and of arbitrary morphisms . I actually found it easiest to prove this using HoTT, although quite possibly there is an easy arrow-theoretic proof too.
Note that the following code uses some lemmas and tactics from my fork of the HoTT repository that I haven’t gotten around to merging back into the main trunk yet.
Require Import Homotopy.
Let’s assume a pointed type , with the group object defined as its loop space.
Hypothesis BG : Type.
Hypothesis pt : BG.
Definition G := pt == pt.
Section OfAPoint.
Similarly, let’s assume the action groupoid as a fibration , with the type defined as its fiber over the basepoint. Note that the action of on is then via transport
.
Hypothesis XG : BG -> Type.
Let X := XG pt.
Let’s consider first the stabilizer of a point of .
Hypothesis x : X.
Urs’s definition of the stabilizer of a point is as the loop space of that point, regarded as living in the total space rather than in .
Definition Urs_stab_pt : Type
:= (existT XG pt x) == (existT XG pt x).
On the other hand, my definition specializes to the following.
Definition Mike_stab_pt : Type
:= { g : G & transport g x == x }.
And their equivalence is just a special case of the characterization of path-spaces of total spaces.
Definition stab_pt_equiv : Urs_stab_pt <~> Mike_stab_pt
:= total_paths_equiv BG XG (existT XG pt x) (existT XG pt x).
End OfAPoint.
Section OfAMap.
Now let’s consider the stabilizer of a map . Again we assume via its action groupoid.
Hypothesis XG : BG -> Type.
Let X := XG pt.
Hypothesis Y : Type.
Hypothesis f : Y -> X.
The following definition is the fibration .
Let Y_XG : (Y -> BG) -> Type
:= fun h => (forall y:Y, XG (h y)).
As a sanity check, we verify that its total space is, in fact, the function space .
Lemma Y_XG_total : (Y -> sigT XG) <~> sigT Y_XG.
Proof.
apply section_total_equiv.
Defined.
Now this is the action groupoid , defined with a pullback as in comment #7 above.
Let YX_G : BG -> Type
:= fun bg => Y_XG (fun _ => bg).
Urs’s definition of the stabilizer of is its stabilizer as a point of this action of on .
Definition Urs_stab_map : Type
:= Urs_stab_pt YX_G f.
Whereas here’s what my definition would give.
Definition Mike_stab_map : Type
:= { g : G & (transport g) o f == f }.
In this case, the proof of equivalence is a little longer, but it really only has two steps. First, we apply the characterization of path-spaces of total spaces to identify Urs’s definition with the total space of some fibration over .
Definition stab_map_equiv : Urs_stab_map <~> Mike_stab_map.
Proof.
apply @equiv_compose with
(B := { g : G & transport (P := fun bg => Y -> XG bg) g f == f }).
refine (total_paths_equiv BG YX_G _ _).
Now we just need to show that this fibration (g
transport g f == f
) is fiberwise equivalent to g
transport g
f == f
, and for this it suffices to show that transport g f
is equivalent to (transport g)
f
.
assert (H : forall g:G,
transport (P := fun bg => Y -> XG bg) g f == (transport g) o f).
This should probably be a lemma in the standard library, but I don’t think it’s there yet, so we can just prove it here.
intros g; apply funext; intros y.
path_change ((fun h => h y)
(transport (P := fun bg => Y -> XG bg) g f)).
path_change (transport g ((fun h => h y) f)).
refine (trans_map _ (fun bg (h: Y -> XG bg) => h y) _).
Now we can complete the proof.
apply total_equiv with
(g := fun g => concat (!H g)).
intros g; apply concat_is_equiv_left.
Defined.
End OfAMap.
By the way, I think that (iTex \sslash
) looks much nicer than .
It saddens me that I find #9 almost completely unreadable.
I believe the two definitions are actually the same, […] I actually found it easiest to prove this using HoTT,
Mike, that is quite impressive. I literally have to run now, but thanks for this.
And thanks for
\sslash
I didn’t know that code and didn’t bother to search for it.
I can not read sslash in firefox on XP.
Zoran: That’s weird; I presume you have all the usual fonts installed. Can someone who knows more than I do suggest any reason why Zoran’s fonts might be missing that character?
I have the same problem as Zoran. And, while I’m thinking of it, doesn’t render for me either. (That’s \preceq, in case it doesn’t render for you either.)
Todd, are you also in Firefox on Windows? Does it look okay in other browsers, or if you change the itex mode on the forum?
Thanks for asking, Mike. Yes, I nomally use Firefox on Windows XP. The \preceq, but not the \sslash, shows up in IE 8.0.6001.18702. (There might be something I need to enable which would allow me to see \sslash?) Sorry, I don’t know what it means to change itex mode, unless you mean to change the filter for formatting comments (?).
I have briefly added some of the above stuff to stabilizer group (not yet Mike’s stuff, though). Maybe I’ll add more later. But now I need to be taking care of something else.
I usually see all the fonts in Lab and Forum, sslash is one of rare exception, and example preceq from 15 as well.
@Todd: Go to “Account” at the top of the nForum page. On the left, click “change iTex mode”, select different things and see how it looks. This changes whether math is displayed as images or as MathML (which the browser has to understand — currently Firefox is the only major browser that supports MathML, so the “auto” setting selects MathML if you’re using Firefox and images otherwise. I think).
You can also test whether math is currently displaying as MathML or as images by trying to select part, but not all, of a mathematical formula with the cursor. This is possible with MathML, but not with an image.
At stabilizer group I have expanded the -topos-theoretic discussion here such as to highlight that the map from the stabilizer comes from a 1-image factorization.
Then I noticed that in the example Stabilizers of Shapes – Klein geometry we used to have an ad-hoc definition of the right conjugation action on a hom space (from a trivial action into a nontrivial action). This was before we had the systematic discussion of conjugation actions simply via the internal homs in the slice .
I have now added a proposition, and its proof, that this ad-hoc definition is indeed equivalent to the systematic one. (This should eventually go to a general discussion at infinity-action).
Have added to the list of examples the remark that for any homomorphism of -groups , the homotopy quotient is the canonical space acted on by for which is the stabilizer of points.
Also added a brief remark about an amusing dual version of Klein geometry:
where Klein considered for a -space stabilizers of maps (figures) in the -space , we may also consider, dually, stabilizers of maps (“co-figures”) in the -space . This is the situation considered at general covariance.
If here (and if we replace by its differential concretification) then stabilizers of co-shapes are quantomorphism n-groups.
Does the stabilizer of shape/coshape story meet up with the invariants/coinvariants of a G-action story? Though I had something about (co)invariants of the induced action on (co)shapes, but it’s gone.
And now off for ’celebration’ of our REF results, remember g+ discussion. (We didn’t do very well.)
Does the stabilizer of shape/coshape story meet up with the invariants/coinvariants of a G-action story?
It’s a “co” going in a different direction.
A stabilizer group is always a thing of co-invariants, namely it is the loop space of the space of coinvariants on the given element being stabilized.
But as we consider actions on mapping spaces between spaces with -action, there are two opposite extreme cases: that where the source or that where there domain carries the trivial -action. Coinvariants in these two cases give stabilizers “of shapes” and “of co-shapes”, respectively.
1 to 24 of 24