Quadratic Reciprocity in a Finite Group
Total Page:16
File Type:pdf, Size:1020Kb
Load more
Recommended publications
-
Quadratic Reciprocity and Computing Modular Square Roots.Pdf
12 Quadratic reciprocity and computing modular square roots In §2.8, we initiated an investigation of quadratic residues. This chapter continues this investigation. Recall that an integer a is called a quadratic residue modulo a positive integer n if gcd(a, n) = 1 and a ≡ b2 (mod n) for some integer b. First, we derive the famous law of quadratic reciprocity. This law, while his- torically important for reasons of pure mathematical interest, also has important computational applications, including a fast algorithm for testing if an integer is a quadratic residue modulo a prime. Second, we investigate the problem of computing modular square roots: given a quadratic residue a modulo n, compute an integer b such that a ≡ b2 (mod n). As we will see, there are efficient probabilistic algorithms for this problem when n is prime, and more generally, when the factorization of n into primes is known. 12.1 The Legendre symbol For an odd prime p and an integer a with gcd(a, p) = 1, the Legendre symbol (a j p) is defined to be 1 if a is a quadratic residue modulo p, and −1 otherwise. For completeness, one defines (a j p) = 0 if p j a. The following theorem summarizes the essential properties of the Legendre symbol. Theorem 12.1. Let p be an odd prime, and let a, b 2 Z. Then we have: (i) (a j p) ≡ a(p−1)=2 (mod p); in particular, (−1 j p) = (−1)(p−1)=2; (ii) (a j p)(b j p) = (ab j p); (iii) a ≡ b (mod p) implies (a j p) = (b j p); 2 (iv) (2 j p) = (−1)(p −1)=8; p−1 q−1 (v) if q is an odd prime, then (p j q) = (−1) 2 2 (q j p). -
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 . -
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. -
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. -
Appendices A. Quadratic Reciprocity Via Gauss Sums
1 Appendices We collect some results that might be covered in a first course in algebraic number theory. A. Quadratic Reciprocity Via Gauss Sums A1. Introduction In this appendix, p is an odd prime unless otherwise specified. A quadratic equation 2 modulo p looks like ax + bx + c =0inFp. Multiplying by 4a, we have 2 2ax + b ≡ b2 − 4ac mod p Thus in studying quadratic equations mod p, it suffices to consider equations of the form x2 ≡ a mod p. If p|a we have the uninteresting equation x2 ≡ 0, hence x ≡ 0, mod p. Thus assume that p does not divide a. A2. Definition The Legendre symbol a χ(a)= p is given by 1ifa(p−1)/2 ≡ 1modp χ(a)= −1ifa(p−1)/2 ≡−1modp. If b = a(p−1)/2 then b2 = ap−1 ≡ 1modp,sob ≡±1modp and χ is well-defined. Thus χ(a) ≡ a(p−1)/2 mod p. A3. Theorem a The Legendre symbol ( p ) is 1 if and only if a is a quadratic residue (from now on abbre- viated QR) mod p. Proof.Ifa ≡ x2 mod p then a(p−1)/2 ≡ xp−1 ≡ 1modp. (Note that if p divides x then p divides a, a contradiction.) Conversely, suppose a(p−1)/2 ≡ 1modp.Ifg is a primitive root mod p, then a ≡ gr mod p for some r. Therefore a(p−1)/2 ≡ gr(p−1)/2 ≡ 1modp, so p − 1 divides r(p − 1)/2, hence r/2 is an integer. But then (gr/2)2 = gr ≡ a mod p, and a isaQRmodp. -
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. -
QUADRATIC RECIPROCITY Abstract. the Goals of This Project Are to Have
QUADRATIC RECIPROCITY JORDAN SCHETTLER Abstract. The goals of this project are to have the reader(s) gain an appreciation for the usefulness of Legendre symbols and ultimately recreate Eisenstein's slick proof of Gauss's Theorema Aureum of quadratic reciprocity. 1. Quadratic Residues and Legendre Symbols Definition 0.1. Let m; n 2 Z with (m; n) = 1 (recall: the gcd (m; n) is the nonnegative generator of the ideal mZ + nZ). Then m is called a quadratic residue mod n if m ≡ x2 (mod n) for some x 2 Z, and m is called a quadratic nonresidue mod n otherwise. Prove the following remark by considering the kernel and image of the map x 7! x2 on the group of units (Z=nZ)× = fm + nZ :(m; n) = 1g. Remark 1. For 2 < n 2 N the set fm+nZ : m is a quadratic residue mod ng is a subgroup of the group of units of order ≤ '(n)=2 where '(n) = #(Z=nZ)× is the Euler totient function. If n = p is an odd prime, then the order of this group is equal to '(p)=2 = (p − 1)=2, so the equivalence classes of all quadratic nonresidues form a coset of this group. Definition 1.1. Let p be an odd prime and let n 2 Z. The Legendre symbol (n=p) is defined as 8 1 if n is a quadratic residue mod p n < = −1 if n is a quadratic nonresidue mod p p : 0 if pjn: The law of quadratic reciprocity (the main theorem in this project) gives a precise relation- ship between the \reciprocal" Legendre symbols (p=q) and (q=p) where p; q are distinct odd primes. -
Quadratic Reciprocity Laws*
JOURNAL OF NUMBER THEORY 4, 78-97 (1972) Quadratic Reciprocity Laws* WINFRIED SCHARLAU Mathematical Institute, University of Miinster, 44 Miinster, Germany Communicated by H. Zassenhaus Received May 26, 1970 Quadratic reciprocity laws for the rationals and rational function fields are proved. An elementary proof for Hilbert’s reciprocity law is given. Hilbert’s reciprocity law is extended to certain algebraic function fields. This paper is concerned with reciprocity laws for quadratic forms over algebraic number fields and algebraic function fields in one variable. This is a very classical subject. The oldest and best known example of a theorem of this kind is, of course, the Gauss reciprocity law which, in Hilbert’s formulation, says the following: If (a, b) is a quaternion algebra over the field of rational numbers Q, then the number of prime spots of Q, where (a, b) does not split, is finite and even. This can be regarded as a theorem about quadratic forms because the quaternion algebras (a, b) correspond l-l to the quadratic forms (1, --a, -b, ub), and (a, b) is split if and only if (1, --a, -b, ub) is isotropic. This formulation of the Gauss reciprocity law suggests immediately generalizations in two different directions: (1) Replace the quaternion forms (1, --a, -b, ub) by arbitrary quadratic forms. (2) Replace Q by an algebraic number field or an algebraic function field in one variable (possibly with arbitrary constant field). While some results are known concerning (l), it seems that the situation has never been investigated thoroughly, not even for the case of the rational numbers. -
Selmer Groups and Quadratic Reciprocity 3
SELMER GROUPS AND QUADRATIC RECIPROCITY FRANZ LEMMERMEYER Abstract. In this article we study the 2-Selmer groups of number fields F as well as some related groups, and present connections to the quadratic reci- procity law in F . Let F be a number field; elements in F × that are ideal squares were called sin- gular numbers in the classical literature. They were studied in connection with explicit reciprocity laws, the construction of class fields, or the solution of em- bedding problems by mathematicians like Kummer, Hilbert, Furtw¨angler, Hecke, Takagi, Shafarevich and many others. Recently, the groups of singular numbers in F were christened Selmer groups by H. Cohen [4] because of an analogy with the Selmer groups in the theory of elliptic curves (look at the exact sequence (2.2) and recall that, under the analogy between number fields and elliptic curves, units correspond to rational points, and class groups to Tate-Shafarevich groups). In this article we will present the theory of 2-Selmer groups in modern language, and give direct proofs based on class field theory. Most of the results given here can be found in 61ff of Hecke’s book [11]; they had been obtained by Hilbert and Furtw¨angler in the§§ roundabout way typical for early class field theory, and were used for proving explicit reciprocity laws. Hecke, on the other hand, first proved (a large part of) the quadratic reciprocity law in number fields using his generalized Gauss sums (see [3] and [24]), and then derived the existence of quadratic class fields (which essentially is just the calculation of the order of a certain Selmer group) from the reciprocity law. -
4 Patterns in Prime Numbers: the Quadratic Reciprocity Law
4 Patterns in Prime Numbers: The Quadratic Reciprocity Law 4.1 Introduction The ancient Greek philosopher Empedocles (c. 495–c. 435 b.c.e.) postulated that all known substances are composed of four basic elements: air, earth, fire, and water. Leucippus (fifth century b.c.e.) thought that these four were indecomposable. And Aristotle (384–322 b.c.e.) introduced four properties that characterize, in various combinations, these four elements: for example, fire possessed dryness and heat. The properties of compound substances were aggregates of these. This classical Greek concept of an element was upheld for almost two thousand years. But by the end of the nineteenth century, 83 chem- ical elements were known to exist, and these formed the basic building blocks of more complex substances. The European chemists Dmitry I. Mendeleyev (1834–1907) and Julius L. Meyer (1830–1895) arranged the elements approx- imately in the order of increasing atomic weight (now known to be the order of increasing atomic numbers), which exhibited a periodic recurrence of their chemical properties [205, 248]. This pattern in properties became known as the periodic law of chemical elements, and the arrangement as the periodic table. The periodic table is now at the center of every introductory chemistry course, and was a major breakthrough into the laws governing elements, the basic building blocks of all chemical compounds in the universe (Exercise 4.1). The prime numbers can be considered numerical analogues of the chemical elements. Recall that these are the numbers that are multiplicatively indecom- posable, i.e., divisible only by 1 and by themselves. -
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. -
Notes on Mod P Arithmetic, Group Theory and Cryptography Chapter One of an Invitation to Modern Number Theory
Notes on Mod p Arithmetic, Group Theory and Cryptography Chapter One of An Invitation to Modern Number Theory Steven J. Miller and Ramin Takloo-Bighash September 5, 2006 Contents 1 Mod p Arithmetic, Group Theory and Cryptography 1 1.1 Cryptography . 1 1.2 Efficient Algorithms . 3 1.2.1 Exponentiation . 3 1.2.2 Polynomial Evaluation (Horner’s Algorithm) . 4 1.2.3 Euclidean Algorithm . 4 1.2.4 Newton’s Method and Combinatorics . 6 1.3 Clock Arithmetic: Arithmetic Modulo n ................................ 10 1.4 Group Theory . 11 1.4.1 Definition . 12 1.4.2 Lagrange’s Theorem . 12 1.4.3 Fermat’s Little Theorem . 14 1.4.4 Structure of (Z=pZ)¤ ...................................... 15 1.5 RSA Revisited . 15 1.6 Eisenstein’s Proof of Quadratic Reciprocity . 17 1.6.1 Legendre Symbol . 17 1.6.2 The Proof of Quadratic Reciprocity . 18 1.6.3 Preliminaries . 19 1.6.4 Counting Lattice Points . 21 1 Abstract We introduce enough group theory and number theory to analyze in detail certain problems in cryptology. In the course of our investigations we comment on the importance of finding efficient algorithms for real world applica- tions. The notes below are from An Invitation to Modern Number Theory, published by Princeton University Press in 2006. For more on the book, see http://www.math.princeton.edu/mathlab/book/index.html The notes below are Chapter One of the book; as such, there are often references to other parts of the book. These references will look something like ?? in the text. If you want additional information on any of these references, please let me know.