Zulip Chat Archive
Stream: Is there code for X?
Topic: Induced representation
Gareth Ma (Sep 13 2024 at 21:09):
Does the notion of induced representation exist? If not, would it be correct to define it via its universal property?
Gareth Ma (Sep 15 2024 at 04:07):
Okay hmm I don't think I'll take on the task of defining it since I am not confident enough in my categorical understanding of rep theory. However, it seems the correct definition should be a proposition Induced p1 p2
that says p2
is induced from p1
. Then you can prove the usual explicit construction satisfies it, and also prove the universal property of induced reps to show it's unique. Then of course the key remaining thing is to prove it's adjoint to the restriction functor Action.res
, i.e. the Frobenius reciprocity
Kim Morrison (Sep 15 2024 at 04:44):
It would be great to have this!
Kevin Buzzard (Sep 15 2024 at 13:23):
I would argue that the main problem with this question is that we have three definitions of representation (docs#Representation, docs#Rep and docs#FDRep) so it's not even clear (to me) what the question is asking right now.
Adam Topaz (Sep 15 2024 at 14:43):
Don’t forget to add to that list docs#Module plus docs#MonoidAlgebra
Adam Topaz (Sep 15 2024 at 14:43):
Presumably that would make the induced representation trivial to define
Gareth Ma (Sep 15 2024 at 18:00):
My understanding is we should deal with Rep
Gareth Ma (Sep 15 2024 at 18:02):
FDRep is a subcategory of Rep anyways so we should keep it no problem, and Representation is an unbundled version of a Rep, which I think we should keep but possibly name it better :thinking:
Gareth Ma (Sep 15 2024 at 18:15):
Adam Topaz said:
Presumably that would make the induced representation trivial to define
I tried last night defining it as k[G] otimes_{k[H]} V, but couldn’t figure out how to convince Lean how to make k[G] a k[H]-module. I think it’s a definition somewhere and not an instance, but I couldn’t find it
Loris Parisot (Apr 22 2025 at 08:14):
Hi ! I was wondering if someone finally managed to define induced representations (I didn't start a new topic because I saw that this one was already existing) ?
Kevin Buzzard (Apr 22 2025 at 10:59):
There are probably lots of different ways to do this because right now there are lots of different ways to talk about a representation of a group :-( @Johan Commelin did you ever make any sense of this?
Edison Xie (Apr 22 2025 at 11:25):
after we develop theories about tensor product over non-comm rings k[G]
modules should be the way to do? @Kevin Buzzard
Edison Xie (Apr 22 2025 at 11:35):
Also it would be easy to just define the induced module as tensoring k[G] and M over k[H]
Antoine Chambert-Loir (Apr 22 2025 at 13:40):
You could define the “coinduced” representation, which, iianm, is usually as good.
Kevin Buzzard (Apr 22 2025 at 14:03):
Basically this question is not well defined until someone suggests (a) the domain of definition and (b) a formal statement of the hypotheses needed in order to define the induced representation.
Junyan Xu (Apr 22 2025 at 15:11):
I tried last night defining it as k[G] otimes_{k[H]} V, but couldn’t figure out how to convince Lean how to make k[G] a k[H]-module. I think it’s a definition somewhere and not an instance, but I couldn’t find it
You can use Module.compHom which is used in ModuleCat.extendScalars via ModuleCat.restrictScalars if you track it down.
In any case tensor product needs to be generalize to the noncommutative setting, and potentially semilinearized; I wonder whether that could/should be done simultaneously with @Anatole Dedecker's #24208 which makes a different generalization.
Now that the APIs for isotypic components and Wedderburn--Artin are ready, I might develop some semisimple representation theory of finite groups subsequently, so there will be motivation for induced representations :)
Sophie Morel (Apr 22 2025 at 18:48):
Antoine Chambert-Loir said:
You could define the “coinduced” representation, which, iianm, is usually as good.
If you want Frobenius reciprocity (and he does want it), then the coinduced representation is not as good, as it is naturally a right adjoint and not a left adjoint. You'd need to prove somehow that then induced and coinduced representations are isomorphic if H
is of finite index in G
.
Johan Commelin (Apr 24 2025 at 18:36):
Kevin Buzzard said:
There are probably lots of different ways to do this because right now there are lots of different ways to talk about a representation of a group :-( Johan Commelin did you ever make any sense of this?
Sorry, haven't been able to make progress in the past week.
Last updated: May 02 2025 at 03:31 UTC