Zulip Chat Archive

Stream: mathlib4

Topic: Murty's irreducibility criterion


Daniel Weber (Sep 07 2024 at 11:29):

I'm proving theorem 1 from https://mast.queensu.ca/%7Emurty/monthly.pdf, and I want to generalize it

Johan Commelin (Sep 07 2024 at 11:59):

I'm curious what ingredients are needed for this result. Using the complex numbers feels like it is over-powered

Riccardo Brasca (Sep 07 2024 at 11:59):

I see. Not sure the norm defined in number theory is relevant here.

Daniel Weber (Sep 07 2024 at 12:08):

Johan Commelin said:

I'm curious what ingredients are needed for this result. Using the complex numbers feels like it is over-powered

It seems quite hard to lower-bound the values of the factors without looking at complex roots

Notification Bot (Sep 07 2024 at 12:08):

4 messages were moved here from #Is there code for X? > Algebras where elements have integer norm by Johan Commelin.

Johan Commelin (Sep 07 2024 at 12:09):

@Daniel Weber By the way, what is your definition of Murty's H?

Daniel Weber (Sep 07 2024 at 13:25):

noncomputable def H (p : K[X]) (hp : p.natDegree  0) :  :=
  sup' (range p.natDegree) (by simpa) (fun x  (p.coeff x : T) / p.leadingCoeff)

Johan Commelin (Sep 07 2024 at 18:16):

I wonder whether it pays off to get rid of hp (using some if .. then .. else)

Daniel Weber (Sep 07 2024 at 18:17):

I think that's what I'll do in the version I PR, yeah

Eric Wieser (Sep 08 2024 at 13:14):

I commented this on the PR already; but using nnnorm and sup also avoids the need for hp

Antoine Chambert-Loir (Sep 08 2024 at 14:59):

@Johan Commelin this is a kind of “product formula” proof which requires all places of Q, so I don't see how real or complex numbers can be avoided.

Johan Commelin (Sep 10 2024 at 06:25):

I guess you are right. But where are the p-adic places coming in? (I admit I only thought about this for 10sec)

Antoine Chambert-Loir (Sep 10 2024 at 07:30):

By the overall use of Int. (Product formula = a non zero integer is at least 1.)

Johan Commelin (Sep 10 2024 at 07:35):

Aha! Thanks


Last updated: May 02 2025 at 03:31 UTC