Global Class Field Theory 1. the Id`Ele Group of a Global Field Let K Be a Global Field. for Every Place V of K We Write K V
Total Page:16
File Type:pdf, Size:1020Kb
Load more
Recommended publications
-
8 Complete Fields and Valuation Rings
18.785 Number theory I Fall 2016 Lecture #8 10/04/2016 8 Complete fields and valuation rings In order to make further progress in our investigation of finite extensions L=K of the fraction field K of a Dedekind domain A, and in particular, to determine the primes p of K that ramify in L, we introduce a new tool that will allows us to \localize" fields. We have already seen how useful it can be to localize the ring A at a prime ideal p. This process transforms A into a discrete valuation ring Ap; the DVR Ap is a principal ideal domain and has exactly one nonzero prime ideal, which makes it much easier to study than A. By Proposition 2.7, the localizations of A at its prime ideals p collectively determine the ring A. Localizing A does not change its fraction field K. However, there is an operation we can perform on K that is analogous to localizing A: we can construct the completion of K with respect to one of its absolute values. When K is a global field, this process yields a local field (a term we will define in the next lecture), and we can recover essentially everything we might want to know about K by studying its completions. At first glance taking completions might seem to make things more complicated, but as with localization, it actually simplifies matters considerably. For those who have not seen this construction before, we briefly review some background material on completions, topological rings, and inverse limits. -
Number Theoretic Symbols in K-Theory and Motivic Homotopy Theory
Number Theoretic Symbols in K-theory and Motivic Homotopy Theory Håkon Kolderup Master’s Thesis, Spring 2016 Abstract We start out by reviewing the theory of symbols over number fields, emphasizing how this notion relates to classical reciprocity lawsp and algebraic pK-theory. Then we compute the second algebraic K-group of the fields pQ( −1) and Q( −3) based on Tate’s technique for K2(Q), and relate the result for Q( −1) to the law of biquadratic reciprocity. We then move into the realm of motivic homotopy theory, aiming to explain how symbols in number theory and relations in K-theory and Witt theory can be described as certain operations in stable motivic homotopy theory. We discuss Hu and Kriz’ proof of the fact that the Steinberg relation holds in the ring π∗α1 of stable motivic homotopy groups of the sphere spectrum 1. Based on this result, Morel identified the ring π∗α1 as MW the Milnor-Witt K-theory K∗ (F ) of the ground field F . Our last aim is to compute this ring in a few basic examples. i Contents Introduction iii 1 Results from Algebraic Number Theory 1 1.1 Reciprocity laws . 1 1.2 Preliminary results on quadratic fields . 4 1.3 The Gaussian integers . 6 1.3.1 Local structure . 8 1.4 The Eisenstein integers . 9 1.5 Class field theory . 11 1.5.1 On the higher unit groups . 12 1.5.2 Frobenius . 13 1.5.3 Local and global class field theory . 14 1.6 Symbols over number fields . -
Little Survey on Large Fields – Old & New –
Little survey on large fields { Old & New { Florian Pop ∗ Abstract. The large fields were introduced by the author in [59] and subsequently acquired several other names. This little survey includes earlier and new developments, and at the end of each section we mention a few open questions. 2010 Mathematics Subject Classification. Primary 12E, 12F, 12G, 12J. Secondary 12E30, 12F10, 12G99. Keywords. Large fields, ultraproducts, PAC, pseudo closed fields, Henselian pairs, elementary equivalence, algebraic varieties, rational points, function fields, (inverse) Galois theory, embedding problems, model theory, rational connectedness, extremal fields. Introduction The notion of large field was introduced in Pop [59] and proved to be the \right class" of fields over which one can do a lot of interesting mathematics, like (inverse) Galois theory, see Colliot-Th´el`ene[7], Moret-Bailly [45], Pop [59], [61], the survey article Harbater [30], study torsors of finite groups Moret- Bailly [46], study rationally connected varieties Koll´ar[37], study the elementary theory of function fields Koenigsmann [35], Poonen{Pop [55], characterize extremal valued fields as introduced by Ershov [12], see Azgin{Kuhlmann{Pop [1], etc. Maybe that is why the \large fields” acquired several other names |google it: ´epais,fertile, weite K¨orper, ample, anti-Mordellic. Last but not least, see Jarden's book [34] for more about large fields (which he calls \ample fields” in his book [34]), and Kuhlmann [41] for relations between large fields and local uniformization (`ala Zariski). Definition. A field k is called a large field, if for every irreducible k-curve C the following holds: If C has a k-rational smooth point, then C has infinitely many k-rational points. -
Numbertheory with Sagemath
NumberTheory with SageMath Following exercises are from Fundamentals of Number Theory written by Willam J. Leveque. Chapter 1 p. 5 prime pi(x): the number of prime numbers that are less than or equal to x. (same as π(x) in textbook.) sage: prime_pi(10) 4 sage: prime_pi(10^3) 168 sage: prime_pi(10^10) 455052511 Also, you can see π(x) lim = 1 x!1 x= log(x) with following code. sage: fori in range(4, 13): ....: print"%.3f" % (prime_pi(10^i) * log(10^i) / 10^i) ....: 1.132 1.104 1.084 1.071 1.061 1.054 1.048 1.043 1.039 p. 7 divisors(n): the divisors of n. number of divisors(n): the number of divisors of n (= τ(n)). sage: divisors(12) [1, 2, 3, 4, 6, 12] sage: number_of_divisors(12) 6 1 For example, you may construct a table of values of τ(n) for 1 ≤ n ≤ 5 as follows: sage: fori in range(1, 6): ....: print"t(%d):%d" % (i, number_of_divisors(i)) ....: t (1) : 1 t (2) : 2 t (3) : 2 t (4) : 3 t (5) : 2 p. 19 Division theorem: If a is positive and b is any integer, there is exactly one pair of integers q and r such that the conditions b = aq + r (0 ≤ r < a) holds. In SageMath, you can get quotient and remainder of division by `a // b' and `a % b'. sage: -7 // 3 -3 sage: -7 % 3 2 sage: -7 == 3 * (-7 // 3) + (-7 % 3) True p. 21 factor(n): prime decomposition for integer n. -
Local-Global Methods in Algebraic Number Theory
LOCAL-GLOBAL METHODS IN ALGEBRAIC NUMBER THEORY ZACHARY KIRSCHE Abstract. This paper seeks to develop the key ideas behind some local-global methods in algebraic number theory. To this end, we first develop the theory of local fields associated to an algebraic number field. We then describe the Hilbert reciprocity law and show how it can be used to develop a proof of the classical Hasse-Minkowski theorem about quadratic forms over algebraic number fields. We also discuss the ramification theory of places and develop the theory of quaternion algebras to show how local-global methods can also be applied in this case. Contents 1. Local fields 1 1.1. Absolute values and completions 2 1.2. Classifying absolute values 3 1.3. Global fields 4 2. The p-adic numbers 5 2.1. The Chevalley-Warning theorem 5 2.2. The p-adic integers 6 2.3. Hensel's lemma 7 3. The Hasse-Minkowski theorem 8 3.1. The Hilbert symbol 8 3.2. The Hasse-Minkowski theorem 9 3.3. Applications and further results 9 4. Other local-global principles 10 4.1. The ramification theory of places 10 4.2. Quaternion algebras 12 Acknowledgments 13 References 13 1. Local fields In this section, we will develop the theory of local fields. We will first introduce local fields in the special case of algebraic number fields. This special case will be the main focus of the remainder of the paper, though at the end of this section we will include some remarks about more general global fields and connections to algebraic geometry. -
Primes in Quadratic Fields 2010
T J Dekker Primes in quadratic fields 2010 Primes in quadratic fields Theodorus J. Dekker *) (2003, revised 2008, 2009) Abstract This paper presents algorithms for calculating the quadratic character and the norms of prime ideals in the ring of integers of any quadratic field. The norms of prime ideals are obtained by means of a sieve algorithm using the quadratic character for the field considered. A quadratic field, and its ring of integers, can be represented naturally in a plane. Using such a representation, the prime numbers - which generate the principal prime ideals in the ring - are displayed in a given bounded region of the plane. Keywords Quadratic field, quadratic character, sieve algorithm, prime ideals, prime numbers. Mathematics Subject Classification 11R04, 11R11, 11Y40. 1. Introduction This paper presents an algorithm to calculate the quadratic character for any quadratic field, and an algorithm to calculate the norms of prime ideals in its ring of integers up to a given maximum. The latter algorithm is used to produce pictures displaying prime numbers in a given bounded region of the ring. A quadratic field, and its ring of integers, can be displayed in a plane in a natural way. The presented algorithms produce a complete picture of its prime numbers within a given region. If the ring of integers does not have the unique-factorization property, then the picture produced displays only the prime numbers, but not those irreducible numbers in the ring which are not primes. Moreover, the prime structure of the non-principal ideals is not displayed except in some pictures for rings of class number 2 or 3. -
Branching Laws for Classical Groups: the Non-Tempered Case
BRANCHING LAWS FOR CLASSICAL GROUPS: THE NON-TEMPERED CASE WEE TECK GAN, BENEDICT H. GROSS AND DIPENDRA PRASAD August 18, 2020 ABSTRACT. This paper generalizes the GGP conjectures which were earlier formulated for tempered or more generally generic L-packets to Arthur packets, especially for the nongeneric L-packets arising from Arthur parameters. The paper introduces the key no- tionof a relevant pair of A-parameters which governs the branching laws for GLn and all classical groups overboth local fields and global fields. It plays a role for all the branching problems studied in [GGP] including Bessel models and Fourier-Jacobi models. CONTENTS 1. Introduction 1 2. Notation and Preliminaries 8 3. Relevant Pair of A-Parameters 10 4. Correlator 12 5. Local Conjecture for GLn 15 6. Local Conjecture for Classical Groups 23 7. A Conjecture for A-packets 25 8. A Special Case of the Conjecture 31 9. Global Conjecture 34 10. Revisiting the Global Conjecture 43 11. Low Rank Examples 46 12. Automorphic Descent 55 13. L-functions: GL case 59 14. L-functions: Classical Groups 63 References 67 arXiv:1911.02783v2 [math.RT] 17 Aug 2020 1. INTRODUCTION This paper is a sequel to our earlier work [GP1, GP2, GGP, GGP2], which discussed several restriction (or branching) problems in the representation theory of classical groups. In the local case, the conjectural answer was given in terms of symplectic root numbers 1991 Mathematics Subject Classification. Primary 11F70; Secondary 22E55. WTG is partially supported by an MOE Tier 2 grant R146-000-233-112. DP thanks Science and En- gineering research board of the Department of Science and Technology, India for its support through the JC Bose National Fellowship of the Govt. -
Number Theory
Number Theory Alexander Paulin October 25, 2010 Lecture 1 What is Number Theory Number Theory is one of the oldest and deepest Mathematical disciplines. In the broadest possible sense Number Theory is the study of the arithmetic properties of Z, the integers. Z is the canonical ring. It structure as a group under addition is very simple: it is the infinite cyclic group. The mystery of Z is its structure as a monoid under multiplication and the way these two structure coalesce. As a monoid we can reduce the study of Z to that of understanding prime numbers via the following 2000 year old theorem. Theorem. Every positive integer can be written as a product of prime numbers. Moreover this product is unique up to ordering. This is 2000 year old theorem is the Fundamental Theorem of Arithmetic. In modern language this is the statement that Z is a unique factorization domain (UFD). Another deep fact, due to Euclid, is that there are infinitely many primes. As a monoid therefore Z is fairly easy to understand - the free commutative monoid with countably infinitely many generators cross the cyclic group of order 2. The point is that in isolation addition and multiplication are easy, but together when have vast hidden depth. At this point we are faced with two potential avenues of study: analytic versus algebraic. By analytic I questions like trying to understand the distribution of the primes throughout Z. By algebraic I mean understanding the structure of Z as a monoid and as an abelian group and how they interact. -
Nonvanishing of Hecke L-Functions and Bloch-Kato P
NONVANISHING OF HECKE L{FUNCTIONS AND BLOCH-KATO p-SELMER GROUPS ARIANNA IANNUZZI, BYOUNG DU KIM, RIAD MASRI, ALEXANDER MATHERS, MARIA ROSS, AND WEI-LUN TSAI Abstract. The canonical Hecke characters in the sense of Rohrlich form a set of algebraic Hecke characters with important arithmetic properties. In this paper, we prove that for an asymptotic density of 100% of imaginary quadratic fields K within certain general families, the number of canonical Hecke characters of K whose L{function has a nonvanishing central value is jdisc(K)jδ for some absolute constant δ > 0. We then prove an analogous density result for the number of canonical Hecke characters of K whose associated Bloch-Kato p-Selmer group is finite. Among other things, our proofs rely on recent work of Ellenberg, Pierce, and Wood on bounds for torsion in class groups, and a careful study of the main conjecture of Iwasawa theory for imaginary quadratic fields. 1. Introduction and statement of results p Let K = Q( −D) be an imaginary quadratic field of discriminant −D with D > 3 and D ≡ 3 mod 4. Let OK be the ring of integers and letp "(n) = (−D=n) = (n=D) be the Kronecker symbol. × We view " as a quadratic character of (OK = −DOK ) via the isomorphism p ∼ Z=DZ = OK = −DOK : p A canonical Hecke character of K is a Hecke character k of conductor −DOK satisfying p 2k−1 + k(αOK ) = "(α)α for (αOK ; −DOK ) = 1; k 2 Z (1.1) (see [R2]). The number of such characters equals the class number h(−D) of K. -
Arithmetic Deformation Theory Via Arithmetic Fundamental Groups and Nonarchimedean Theta-Functions, Notes on the Work of Shinichi Mochizuki
ARITHMETIC DEFORMATION THEORY VIA ARITHMETIC FUNDAMENTAL GROUPS AND NONARCHIMEDEAN THETA-FUNCTIONS, NOTES ON THE WORK OF SHINICHI MOCHIZUKI IVAN FESENKO ABSTRACT. These notes survey the main ideas, concepts and objects of the work by Shinichi Mochizuki on inter- universal Teichmüller theory [31], which might also be called arithmetic deformation theory, and its application to diophantine geometry. They provide an external perspective which complements the review texts [32] and [33]. Some important developments which preceded [31] are presented in the first section. Several key aspects of arithmetic deformation theory are discussed in the second section. Its main theorem gives an inequality–bound on the size of volume deformation associated to a certain log-theta-lattice. The application to several fundamental conjectures in number theory follows from a further direct computation of the right hand side of the inequality. The third section considers additional related topics, including practical hints on how to study the theory. This text was published in Europ. J. Math. (2015) 1:405–440. CONTENTS Foreword 2 1. The origins 2 1.1. From class field theory to reconstructing number fields to coverings of P1 minus three points2 1.2. A development in diophantine geometry3 1.3. Conjectural inequalities for the same property4 1.4. A question posed to a student by his thesis advisor6 1.5. On anabelian geometry6 2. On arithmetic deformation theory8 2.1. Texts related to IUT8 2.2. Initial data 9 2.3. A brief outline of the proof and a list of some of the main concepts 10 2.4. Mono-anabelian geometry and multiradiality 12 2.5. -
On the Structure of Galois Groups As Galois Modules
ON THE STRUCTURE OF GALOIS GROUPS AS GALOIS MODULES Uwe Jannsen Fakult~t f~r Mathematik Universit~tsstr. 31, 8400 Regensburg Bundesrepublik Deutschland Classical class field theory tells us about the structure of the Galois groups of the abelian extensions of a global or local field. One obvious next step is to take a Galois extension K/k with Galois group G (to be thought of as given and known) and then to investigate the structure of the Galois groups of abelian extensions of K as G-modules. This has been done by several authors, mainly for tame extensions or p-extensions of local fields (see [10],[12],[3] and [13] for example and further literature) and for some infinite extensions of global fields, where the group algebra has some nice structure (Iwasawa theory). The aim of these notes is to show that one can get some results for arbitrary Galois groups by using the purely algebraic concept of class formations introduced by Tate. i. Relation modules. Given a presentation 1 + R ÷ F ÷ G~ 1 m m of a finite group G by a (discrete) free group F on m free generators, m the factor commutator group Rabm = Rm/[Rm'R m] becomes a finitely generated Z[G]-module via the conjugation in F . By Lyndon [19] and m Gruenberg [8]§2 we have 1.1. PROPOSITION. a) There is an exact sequence of ~[G]-modules (I) 0 ÷ R ab + ~[G] m ÷ I(G) + 0 , m where I(G) is the augmentation ideal, defined by the exact sequence (2) 0 + I(G) ÷ Z[G] aug> ~ ÷ 0, aug( ~ aoo) = ~ a . -
The Class Number Formula for Quadratic Fields and Related Results
The Class Number Formula for Quadratic Fields and Related Results Roy Zhao January 31, 2016 1 The Class Number Formula for Quadratic Fields and Related Results Roy Zhao CONTENTS Page 2/ 21 Contents 1 Acknowledgements 3 2 Notation 4 3 Introduction 5 4 Concepts Needed 5 4.1 TheKroneckerSymbol.................................... 6 4.2 Lattices ............................................ 6 5 Review about Quadratic Extensions 7 5.1 RingofIntegers........................................ 7 5.2 Norm in Quadratic Fields . 7 5.3 TheGroupofUnits ..................................... 7 6 Unique Factorization of Ideals 8 6.1 ContainmentImpliesDivision................................ 8 6.2 Unique Factorization . 8 6.3 IdentifyingPrimeIdeals ................................... 9 7 Ideal Class Group 9 7.1 IdealNorm .......................................... 9 7.2 Fractional Ideals . 9 7.3 Ideal Class Group . 10 7.4 MinkowskiBound....................................... 10 7.5 Finiteness of the Ideal Class Group . 10 7.6 Examples of Calculating the Ideal Class Group . 10 8 The Class Number Formula for Quadratic Extensions 11 8.1 IdealDensity ......................................... 11 8.1.1 Ideal Density in Imaginary Quadratic Fields . 11 8.1.2 Ideal Density in Real Quadratic Fields . 12 8.2 TheZetaFunctionandL-Series............................... 14 8.3 The Class Number Formula . 16 8.4 Value of the Kronecker Symbol . 17 8.5 UniquenessoftheField ................................... 19 9 Appendix 20 2 The Class Number Formula for Quadratic Fields and Related Results Roy Zhao Page 3/ 21 1 Acknowledgements I would like to thank my advisor Professor Richard Pink for his helpful discussions with me on this subject matter throughout the semester, and his extremely helpful comments on drafts of this paper. I would also like to thank Professor Chris Skinner for helping me choose this subject matter and for reading through this paper.