The twin prime counting function and it s consequences

Size: px
Start display at page:

Download "The twin prime counting function and it s consequences"

Transcription

1 The twin prime counting function and it s consequences Chris De Corte chrisdecorte@yahoo.com October 11,

2 The goal of this document is to share with the mathematical community the results of my attempts to create a twin counting formula. I tried many different regression models first but the outcome of none of them satisfied me. Therefore, I wanted to use the same methodology that I used to derive my standard prime counting function to derive a twin prime counting function. I believed that I have succeeded in this and published the first version of this document on March 3, Due to a comment from someone, I recently changed a constant that I used in my original document to a constant that came back in my (single) prime counting formula. Now the pieces seem to be one step nearer to being in place. 2

3 CONTENTS CONTENTS Contents 1 Key-Words 4 2 Derivation of the formulas Forming the basis Main Part The twin counting formula Calculations and testing Microsoft Excel C Pari/GP Consequences About the correction factor About the number of twin primes Maximum distance between twin primes References 8 6 Figures 9 3

4 2 DERIVATION OF THE FORMULAS 1 Key-Words Prime numbers, number theory, twin prime, conjecture, zahlentheorie, Brun, Hardy-Littlewood, Polignac, Yitang Zhang; [1]. 2 Derivation of the formulas 2.1 Forming the basis Suppose an empty x-axis with all the natural numbers still vacant. We can ask ourselves what the chance would be, at the starting point, that twin primes could be created. We can assume that this will be 100% or 1. Therefore, we introduce the first prime 2 by adding a sinus wave with a period of 2 (figure 1). If we assume that all the numbers where this wave goes through are crossed out as twin prime candidates, then we can say that the chance to find twin primes suddenly diminishes with 1/2. It is clear that the couples (3,5), (5,7),... can still be twin primes. So the new twin prime probability becomes 1 1/2 = 1/ Main Part We now introduce the second prime by adding a sinus wave with a period of 3 (figure 2). It is clear that the number of possible twins is diminishing again but the question is with how much? Since the only position (phase) when this latest sinus is not diminishing the number of twin primes is when it crosses the x-axis on the same time as the sinus wave of period 2. This means that this wave will reduce the likelihood for new twins with (3-2)/3. So the new twin prime probability becomes 1/2 1/3 = We now introduce the third prime by adding a sinus wave with a period of 5 (figure 3). This wave will reduce the number of twins during 3 of his 5 possible random phases. This means that this wave will reduce the likelihood for new twins with (5-2)/5. So the new twin prime probability becomes /5 = 0.1. The reader can test the next step using figure The twin counting formula We continue the same logic for the other prime numbers and derive a general formula: prob i = prob i 1. p i 2 p i (1) 4

5 2.3 The twin counting formula 2 DERIVATION OF THE FORMULAS In the previous we were still calculating individual probabilities. These were only valid immediately after a new prime and before the next new prime. To know the total probability of the occurrence of a twin prime, after a set of primes already in place, we have to integrate the above formula over the length that it is valid: totprob x = prob i.(p i p i 1 ) (2) p i x We tested the above logic for a larger set of data and found that our assumption holds as will be demonstrated later. We now declare our twin prime counting formula and give it the symbol Π 2 : x Π 2 (x 3) = α p i 2 ( p j 2 ) (p i p i 1 ) (3) p j With: p i =3 p j =3 α (4) The new reader should know that in previous versions of this document, I have used π or π in stead of α 2 as the correction factor. The reason why I changed this recently should become obvious in the next paragraphs. The 1+ between the brackets of formula (3) can easily be neglected and therefore, we can rewrite our formula as: Π 2 (x 3) 1 2 α2 x p i =3 (p i p i 1 ) p i p j =3 (1 2 ) (5) p j This formula then corresponds to starting the logic of the probabilities after introducing 2 as a prime (subsection Main Part ) and not starting from an empty x-axis (subsection Forming the basis ). The above formula can be seen as an integration by parts and can hence be rewritten as follows: Π 2 (x 3) 1 2 α2 x 3 x=p i p j =3 (1 2 p j ) dx (6) There are remarkable similarities and differences between the above twin prime counting formula and the probabilistic (single) prime counting formula [2]: Π(x 2) α x 2 x=p i p j =2 (1 1 p j ) dx (7) 5

6 3 CALCULATIONS AND TESTING I have been reminded recently by a person calling himself Brian McCabe that there is a relation with the Euler-Mascheroni constant for the twin prime counting formula so that I could rewrite formula (5) to formula (6) which is a similar form as formula (7), using: α = e γ where γ is the Euler Mascheroni constant (8) 3 Calculations and testing 3.1 Microsoft Excel We first tested the above formula (3) for a limited set (until twin 15,485,651) using Excel (see figure 7). In the Excel calculation we still used π = π as correction factor. As an extra, we have calculated (in Excel) the distance between the twin primes and averaged them in buckets of 100. We have put the results in a graph and let excel calculate a trend line. The results can be seen in figure C++ Afterwards, we developed our own C++ program that generated 1000 files of about 1 million lines each. A summary of the results can be found in table 1. Using this program, we tested the above formula up to twin prime 999,999,191, which is number 3,424,506 on the list of twin primes, we come to the conclusion that, for this range, we have to correct our results with a factor of approximately We call this correction factor π. The results of the C++ program are summarized in a graph in figure 5. We added an additional line to the graph using π as a correction factor. This can be seen in figure Pari/GP First we choose the prime count up to where we want to calculate. In the example, we will calculate to prime count 530 which corresponds with prime 3821 which is number 100 of the twin primes (see Table 1). The formula 3 can be tested in Pari/GP if wanted. The code to use is:? x=530 %1 = 530 6

7 4 CONSEQUENCES? (sum(pi=2,x,0.5*prod(pj=2,pi,(1-2/prime(pj)),)*(prime(pi)-prime(pi-1)),)+1)* %2 = Or by using the simplified formula 4:? x=530 %3 = 530? Pi/2*sum(pi=2,x,prod(pj=2,pi,(1-2/prime(pj)),)*(prime(pi)-prime(pi-1)),) %4 = In Pari/GP, the maximum value for x will be as the numbers of primes is limited. However for x > 1000, this calculation becomes increasingly too challenging for the program. 4 Consequences 4.1 About the correction factor Up to now, we can not explain where the correction factor in formula (3) comes from. But it seems that the same correction factor plays a role in both the (single) prime counting formula and in the twin prime counting formula. Furthermore are there remarkable similarities and differences between both formula s which don t seem to be abnormal for mathematicians. Of coarse, both formula s are deducted using a similar (but different) logic. The correction factor might be explained by comparing the prime number theorem with the Mertens theorem but that is only an explanation by comparing formula s. Still, no physical intuitive explanation justifies this value. 4.2 About the number of twin primes In our Excel (figure 7), we can theoretically add an infinitude of additional lines each covering the last new prime. Our probability for a new twin prime will never become 0 in formula 1. Hence we can say that based on the above results, we will expect an infinitude of twin primes or that formula 1 proves the twin prime conjecture. 4.3 Maximum distance between twin primes As our calculation expands with the number of primes, our probability to find a next twin prime will diminish with formula 1. As there will never come an end to the number of primes, 7

8 5 REFERENCES the average distance will keep on increasing. This finding seems to be confirmed by the general trend in figure 8 and by the trend line formula displayed in it. So, the maximum distance between twin primes will be unbounded. 5 References 1. en.wikipedia.org ; Twin Prime ; Probabilistic approach to prime counting. 8

9 6 FIGURES 6 Figures Figure 1: After introducing the first prime 2, it seems that the number of possible twins diminished with 1/2. Figure 2: This new wave will reduce the number of twin candidates with a factor of 1/3. 9

10 6 FIGURES Figure 3: In this figure we show that the new function sin(π x 5 ) will reduce the twin probability with a factor Figure 4: In this figure we show the impact of prime 7 on the twin prime counting function. By imaginary shifting sin(π x 7 ) from values 7-14 to 14-21, we see that only in 2 out of the 7 cases, this shift would not have an impact on the possible twins. 10

11 6 FIGURES Figure 5: In this figure we show the results of our calculations and compare our estimate T win calc with the real T win Count for primes going to 999,999,

12 6 FIGURES Figure 6: In this figure we show the results of our calculations and compare our estimate T win calc with the real T win Count for primes going to 999,999,191 and we also included the calculation using π as a correction factor ( Twin Calc 2 ). 12

13 6 FIGURES Figure 7: In this figure we demonstrate how we have build up our excel of calculations. Table 1: In this table, we calculate the probability for a new twin prime immediately after a new prime ( Tot prob ) using formula (2), integrate it over the distance to the previous prime ( My pure ) and correct it with a factor π = to obtain My integr which is the approximation to Tw Count, the twin count value. P r Count T w Count P rime T ot prob My pure My integr

14 6 FIGURES Figure 8: In this figure we show the average distance between twin primes (in buckets of 100) for the first 403,905 twin primes upto twin 90,704,

All About Numbers Definitions and Properties

All About Numbers Definitions and Properties All About Numbers Definitions and Properties Number is a numeral or group of numerals. In other words it is a word or symbol, or a combination of words or symbols, used in counting several things. Types

More information

A New Sieve for the Twin Primes

A New Sieve for the Twin Primes A ew Sieve for the Twin Primes and how the number of twin primes is related to the number of primes by H.L. Mitchell Department of mathematics CUY-The City College 160 Convent avenue ew York, Y 10031 USA

More information

Estimating Prime Power Sums

Estimating Prime Power Sums Estimating Prime Power Sums Francis Gerard Mentored By: Lawrence Washington, University of Maryland Personal Statement Number theory is a field that has, for me, always held a special kind of magic. There

More information

Direct Proof and Counterexample I:Introduction

Direct Proof and Counterexample I:Introduction Direct Proof and Counterexample I:Introduction Copyright Cengage Learning. All rights reserved. Goal Importance of proof Building up logic thinking and reasoning reading/using definition interpreting :

More information

Direct Proof and Counterexample I:Introduction. Copyright Cengage Learning. All rights reserved.

Direct Proof and Counterexample I:Introduction. Copyright Cengage Learning. All rights reserved. Direct Proof and Counterexample I:Introduction Copyright Cengage Learning. All rights reserved. Goal Importance of proof Building up logic thinking and reasoning reading/using definition interpreting statement:

More information

SQUARE PATTERNS AND INFINITUDE OF PRIMES

SQUARE PATTERNS AND INFINITUDE OF PRIMES SQUARE PATTERNS AND INFINITUDE OF PRIMES KEITH CONRAD 1. Introduction Numerical data suggest the following patterns for prime numbers p: 1 mod p p = 2 or p 1 mod 4, 2 mod p p = 2 or p 1, 7 mod 8, 2 mod

More information

Heuristics for Prime Statistics Brown Univ. Feb. 11, K. Conrad, UConn

Heuristics for Prime Statistics Brown Univ. Feb. 11, K. Conrad, UConn Heuristics for Prime Statistics Brown Univ. Feb., 2006 K. Conrad, UConn Two quotes about prime numbers Mathematicians have tried in vain to this day to discover some order in the sequence of prime numbers,

More information

5.5 Deeper Properties of Continuous Functions

5.5 Deeper Properties of Continuous Functions 5.5. DEEPER PROPERTIES OF CONTINUOUS FUNCTIONS 195 5.5 Deeper Properties of Continuous Functions 5.5.1 Intermediate Value Theorem and Consequences When one studies a function, one is usually interested

More information

Contradictions in some primes conjectures

Contradictions in some primes conjectures Contradictions in some primes conjectures VICTOR VOLFSON ABSTRACT. This paper demonstrates that from the Cramer's, Hardy-Littlewood's and Bateman- Horn's conjectures (suggest that the probability of a

More information

MATH2206 Prob Stat/20.Jan Weekly Review 1-2

MATH2206 Prob Stat/20.Jan Weekly Review 1-2 MATH2206 Prob Stat/20.Jan.2017 Weekly Review 1-2 This week I explained the idea behind the formula of the well-known statistic standard deviation so that it is clear now why it is a measure of dispersion

More information

6.2 Deeper Properties of Continuous Functions

6.2 Deeper Properties of Continuous Functions 6.2. DEEPER PROPERTIES OF CONTINUOUS FUNCTIONS 69 6.2 Deeper Properties of Continuous Functions 6.2. Intermediate Value Theorem and Consequences When one studies a function, one is usually interested in

More information

Solving Systems of Linear Equations with Linear Combinations (The Elimination Method)

Solving Systems of Linear Equations with Linear Combinations (The Elimination Method) Student Handout Name Solving Systems of Linear Equations with Linear Combinations (The Elimination Method) Problem 1 Launch the Activity (Multiplying an Equation by a Constant) When asked to graph the

More information

A Few New Facts about the EKG Sequence

A Few New Facts about the EKG Sequence 1 2 3 47 6 23 11 Journal of Integer Sequences, Vol. 11 (2008), Article 08.4.2 A Few New Facts about the EKG Sequence Piotr Hofman and Marcin Pilipczuk Department of Mathematics, Computer Science and Mechanics

More information

Math 13, Spring 2013, Lecture B: Midterm

Math 13, Spring 2013, Lecture B: Midterm Math 13, Spring 2013, Lecture B: Midterm Name Signature UCI ID # E-mail address Each numbered problem is worth 12 points, for a total of 84 points. Present your work, especially proofs, as clearly as possible.

More information

Prime Numbers. Prime Numbers. Ramesh Sreekantan ISI, Bangalore. December 1, 2014

Prime Numbers. Prime Numbers. Ramesh Sreekantan ISI, Bangalore. December 1, 2014 Prime Numbers Prime Numbers Ramesh Sreekantan ISI, Bangalore December 1, 2014 Introduction - Prime Numbers Prime numbers are the numbers 2,3,5,7... These are natural numbers which cannot be divided by

More information

Arithmetic Statistics Lecture 1

Arithmetic Statistics Lecture 1 Arithmetic Statistics Lecture 1 Álvaro Lozano-Robledo Department of Mathematics University of Connecticut May 28 th CTNT 2018 Connecticut Summer School in Number Theory Question What is Arithmetic Statistics?

More information

THE TWIN PRIMES CONJECTURE Bertrand Wong Eurotech, S pore

THE TWIN PRIMES CONJECTURE Bertrand Wong Eurotech, S pore THE TWIN PRIMES CONJECTURE Bertrand Wong Eurotech, S pore Email: bwong8@singnetcomsg ABSTRACT Euclid s proof of the infinitude of the primes has generally been regarded as elegant It is a proof by contradiction,

More information

Lesson 14: Solving Inequalities

Lesson 14: Solving Inequalities Student Outcomes Students learn if-then moves using the addition and multiplication properties of inequality to solve inequalities and graph the solution sets on the number line. Classwork Exercise 1 (5

More information

1 Probabilities. 1.1 Basics 1 PROBABILITIES

1 Probabilities. 1.1 Basics 1 PROBABILITIES 1 PROBABILITIES 1 Probabilities Probability is a tricky word usually meaning the likelyhood of something occuring or how frequent something is. Obviously, if something happens frequently, then its probability

More information

1 Probabilities. 1.1 Basics 1 PROBABILITIES

1 Probabilities. 1.1 Basics 1 PROBABILITIES 1 PROBABILITIES 1 Probabilities Probability is a tricky word usually meaning the likelyhood of something occuring or how frequent something is. Obviously, if something happens frequently, then its probability

More information

Lesson 8: Magnitude. Students know that positive powers of 10 are very large numbers, and negative powers of 10 are very small numbers.

Lesson 8: Magnitude. Students know that positive powers of 10 are very large numbers, and negative powers of 10 are very small numbers. Student Outcomes Lesson 8: Magnitude Students know that positive powers of 10 are very large numbers, and negative powers of 10 are very small numbers. Students know that the exponent of an expression

More information

In Which We Conclude Calculus by Using Taylor Series to Prove Euler s Identity Calculus 12, Veritas Prep.

In Which We Conclude Calculus by Using Taylor Series to Prove Euler s Identity Calculus 12, Veritas Prep. In Which We Conclude Calculus by Using Taylor Series to Prove Euler s Identity Calculus 12, Veritas Prep. 23 February 2011 Name: Directions: Feel free to use scrap paper if you need it. Show all your work

More information

GCSE AQA Mathematics. Numbers

GCSE AQA Mathematics. Numbers GCSE Mathematics Numbers Md Marufur Rahman Msc Sustainable Energy Systems Beng (Hons) Mechanical Engineering Bsc (Hons) Computer science & engineering GCSE AQA Mathematics 215/16 Table of Contents Introduction:...

More information

An Approach to Goldbach s Conjecture

An Approach to Goldbach s Conjecture An Approach to Goldbach s Conjecture T.O. William-west Abstract This paper attempts to prove Goldbach s conjecture. As its major contribution, an alternative perspective to the proof of Goldbach conjecture

More information

Probabilities, Uncertainties & Units Used to Quantify Climate Change

Probabilities, Uncertainties & Units Used to Quantify Climate Change Name Class Probabilities, Uncertainties & Units Used to Quantify Climate Change Most of the global average warming over the past 50 years is very likely due to anthropogenic GHG increases How does the

More information

MATH 250: THE DISTRIBUTION OF PRIMES. ζ(s) = n s,

MATH 250: THE DISTRIBUTION OF PRIMES. ζ(s) = n s, MATH 50: THE DISTRIBUTION OF PRIMES ROBERT J. LEMKE OLIVER For s R, define the function ζs) by. Euler s work on rimes ζs) = which converges if s > and diverges if s. In fact, though we will not exloit

More information

Chapter One. The Real Number System

Chapter One. The Real Number System Chapter One. The Real Number System We shall give a quick introduction to the real number system. It is imperative that we know how the set of real numbers behaves in the way that its completeness and

More information

At the start of the term, we saw the following formula for computing the sum of the first n integers:

At the start of the term, we saw the following formula for computing the sum of the first n integers: Chapter 11 Induction This chapter covers mathematical induction. 11.1 Introduction to induction At the start of the term, we saw the following formula for computing the sum of the first n integers: Claim

More information

Cambridge University Press How to Prove it: A Structured Approach: Second edition Daniel J. Velleman Excerpt More information

Cambridge University Press How to Prove it: A Structured Approach: Second edition Daniel J. Velleman Excerpt More information Introduction What is mathematics? High school mathematics is concerned mostly with solving equations and computing answers to numerical questions. College mathematics deals with a wider variety of questions,

More information

PRIMES. Barry Mazur. April 26, (A discussion of Primes: What is Riemann s Hypothesis?, the book I m currently writing with William Stein)

PRIMES. Barry Mazur. April 26, (A discussion of Primes: What is Riemann s Hypothesis?, the book I m currently writing with William Stein) PRIMES Barry Mazur April 26, 2014 (A discussion of Primes: What is Riemann s Hypothesis?, the book I m currently writing with William Stein) William: https://vimeo.com/90380011 Figure: William The impact

More information

Prime Number Theory and the Riemann Zeta-Function

Prime Number Theory and the Riemann Zeta-Function 5262589 - Recent Perspectives in Random Matrix Theory and Number Theory Prime Number Theory and the Riemann Zeta-Function D.R. Heath-Brown Primes An integer p N is said to be prime if p and there is no

More information

Prime Gaps and Adeles. Tom Wright Johns Hopkins University (joint with B. Weiss, University of Michigan)

Prime Gaps and Adeles. Tom Wright Johns Hopkins University (joint with B. Weiss, University of Michigan) Prime Gaps and Adeles Tom Wright Johns Hopkins University (joint with B. Weiss, University of Michigan) January 16, 2010 History 2000 years ago, Euclid posed the following conjecture: Twin Prime Conjecture:

More information

Turing and the Riemann zeta function

Turing and the Riemann zeta function Turing and the Riemann zeta function Andrew Odlyzko School of Mathematics University of Minnesota odlyzko@umn.edu http://www.dtc.umn.edu/ odlyzko May 11, 2012 Andrew Odlyzko ( School of Mathematics University

More information

The Absolute Value Equation

The Absolute Value Equation The Absolute Value Equation The absolute value of number is its distance from zero on the number line. The notation for absolute value is the presence of two vertical lines. 5 This is asking for the absolute

More information

Lecture Notes on Inductive Definitions

Lecture Notes on Inductive Definitions Lecture Notes on Inductive Definitions 15-312: Foundations of Programming Languages Frank Pfenning Lecture 2 August 28, 2003 These supplementary notes review the notion of an inductive definition and give

More information

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 10

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 10 EECS 70 Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 10 Introduction to Basic Discrete Probability In the last note we considered the probabilistic experiment where we flipped

More information

Example 2: Student work M ATHS COURSEWORK. Mathematics SL and HL teacher support material 1. Proving Euler s Totient Theorem

Example 2: Student work M ATHS COURSEWORK. Mathematics SL and HL teacher support material 1. Proving Euler s Totient Theorem M ATHS COURSEWORK Mathematics SL and HL teacher support material 1 TA B L E O F C O N T E N T S Maths Coursework 3 Introduction 3 The Theorem 3 Euler s Totient Function 3 Fermat s Little Theorem 4 Proving

More information

THE SIMPLE PROOF OF GOLDBACH'S CONJECTURE. by Miles Mathis

THE SIMPLE PROOF OF GOLDBACH'S CONJECTURE. by Miles Mathis THE SIMPLE PROOF OF GOLDBACH'S CONJECTURE by Miles Mathis miles@mileswmathis.com Abstract Here I solve Goldbach's Conjecture by the simplest method possible. I do this by first calculating probabilites

More information

Logic and Modelling. Introduction to Predicate Logic. Jörg Endrullis. VU University Amsterdam

Logic and Modelling. Introduction to Predicate Logic. Jörg Endrullis. VU University Amsterdam Logic and Modelling Introduction to Predicate Logic Jörg Endrullis VU University Amsterdam Predicate Logic In propositional logic there are: propositional variables p, q, r,... that can be T or F In predicate

More information

Lesson 8: Graphs of Simple Non Linear Functions

Lesson 8: Graphs of Simple Non Linear Functions Student Outcomes Students examine the average rate of change for non linear functions and learn that, unlike linear functions, non linear functions do not have a constant rate of change. Students determine

More information

Lecture Notes on Inductive Definitions

Lecture Notes on Inductive Definitions Lecture Notes on Inductive Definitions 15-312: Foundations of Programming Languages Frank Pfenning Lecture 2 September 2, 2004 These supplementary notes review the notion of an inductive definition and

More information

EAS 535 Laboratory Exercise Weather Station Setup and Verification

EAS 535 Laboratory Exercise Weather Station Setup and Verification EAS 535 Laboratory Exercise Weather Station Setup and Verification Lab Objectives: In this lab exercise, you are going to examine and describe the error characteristics of several instruments, all purportedly

More information

Writing Mathematical Proofs

Writing Mathematical Proofs Writing Mathematical Proofs Dr. Steffi Zegowitz The main resources for this course are the two following books: Mathematical Proofs by Chartrand, Polimeni, and Zhang How to Think Like a Mathematician by

More information

Week 2. Week 1 Recap. Week 2

Week 2. Week 1 Recap. Week 2 Week 2 Week 1 Recap In our first session, we outlined our big-picture goals for this course. We are going to spend these first couple weeks looking at mathematical proof, then we will take a couple weeks

More information

Overview. Overview. Overview. Specific Examples. General Examples. Bivariate Regression & Correlation

Overview. Overview. Overview. Specific Examples. General Examples. Bivariate Regression & Correlation Bivariate Regression & Correlation Overview The Scatter Diagram Two Examples: Education & Prestige Correlation Coefficient Bivariate Linear Regression Line SPSS Output Interpretation Covariance ou already

More information

Understanding Exponents Eric Rasmusen September 18, 2018

Understanding Exponents Eric Rasmusen September 18, 2018 Understanding Exponents Eric Rasmusen September 18, 2018 These notes are rather long, but mathematics often has the perverse feature that if someone writes a long explanation, the reader can read it much

More information

Proofs. An (informal) proof is an essay that will persuade a logical reader that a mathematical theorem is true.

Proofs. An (informal) proof is an essay that will persuade a logical reader that a mathematical theorem is true. Proofs An (informal) proof is an essay that will persuade a logical reader that a mathematical theorem is true. Some Vocabulary related to Mathematical Theorems and Proofs A mathematical proof is a valid

More information

P a g e 1. Prime Gaps. The Structure and Properties of the Differences between Successive Prime Numbers. Jerrad Neff

P a g e 1. Prime Gaps. The Structure and Properties of the Differences between Successive Prime Numbers. Jerrad Neff P a g e 1 Prime Gaps The Structure and Properties of the Differences between Successive Prime Numbers Jerrad Neff P a g e 2 Table of Contents 1. Defining the Prime Gap Function 2. Discoveries and Data

More information

Elementary Proof That There are Infinitely Many Primes p such that p 1 is a Perfect Square (Landau's Fourth Problem)

Elementary Proof That There are Infinitely Many Primes p such that p 1 is a Perfect Square (Landau's Fourth Problem) Elementary Proof That There are Infinitely Many Primes such that 1 is a Perfect Square (Landau's Fourth Problem) Stehen Marshall 7 March 2017 Abstract This aer resents a comlete and exhaustive roof of

More information

Small gaps between primes

Small gaps between primes CRM, Université de Montréal Princeton/IAS Number Theory Seminar March 2014 Introduction Question What is lim inf n (p n+1 p n )? In particular, is it finite? Introduction Question What is lim inf n (p

More information

Complex Numbers For High School Students

Complex Numbers For High School Students Complex Numbers For High School Students For the Love of Mathematics and Computing Saturday, October 14, 2017 Presented by: Rich Dlin Presented by: Rich Dlin Complex Numbers For High School Students 1

More information

Pseudoprime Statistics to 10 19

Pseudoprime Statistics to 10 19 Pseudoprime Statistics to 10 19 Jens Kruse Andersen and Harvey Dubner CONTENTS 1. Introduction 2. Background Information 3. Results References A base-b pseudoprime (psp) is a composite N satisfying b N

More information

New bounds on gaps between primes

New bounds on gaps between primes New bounds on gaps between primes Andrew V. Sutherland Massachusetts Institute of Technology Brandeis-Harvard-MIT-Northeastern Joint Colloquium October 17, 2013 joint work with Wouter Castryck, Etienne

More information

MATH 25 CLASS 8 NOTES, OCT

MATH 25 CLASS 8 NOTES, OCT MATH 25 CLASS 8 NOTES, OCT 7 20 Contents. Prime number races 2. Special kinds of prime numbers: Fermat and Mersenne numbers 2 3. Fermat numbers 3. Prime number races We proved that there were infinitely

More information

Functional Skills Mathematics Level 2 assessment

Functional Skills Mathematics Level 2 assessment Functional Skills Mathematics Level 2 assessment Marking scheme ONLINE www.cityandguilds.com April 2015 Version 1.0 V1 Level 2 Evolve Sample 2 Mark Represent Analyse Interpret Open Fixed S1 Q1 3 3 0 0

More information

7 th Grade Math Scope and Sequence Student Outcomes (Objectives Skills/Verbs)

7 th Grade Math Scope and Sequence Student Outcomes (Objectives Skills/Verbs) own discovery of the Big BIG IDEA: How are different types of numbers used to represent real life situations? Why is it necessary to have different types of numbers for different situations? Pg 762 1-4(no

More information

AP CALCULUS AB 2006 SCORING GUIDELINES (Form B) Question 2. the

AP CALCULUS AB 2006 SCORING GUIDELINES (Form B) Question 2. the AP CALCULUS AB 2006 SCORING GUIDELINES (Form B) Question 2 Let f be the function defined for x 0 with f ( 0) = 5 and f, the ( x 4) 2 first derivative of f, given by f ( x) = e sin ( x ). The graph of y

More information

Computational Complexity

Computational Complexity p. 1/24 Computational Complexity The most sharp distinction in the theory of computation is between computable and noncomputable functions; that is, between possible and impossible. From the example of

More information

Small gaps between prime numbers

Small gaps between prime numbers Small gaps between prime numbers Yitang Zhang University of California @ Santa Barbara Mathematics Department University of California, Santa Barbara April 20, 2016 Yitang Zhang (UCSB) Small gaps between

More information

1. Rolling a six sided die and observing the number on the uppermost face is an experiment with six possible outcomes; 1, 2, 3, 4, 5 and 6.

1. Rolling a six sided die and observing the number on the uppermost face is an experiment with six possible outcomes; 1, 2, 3, 4, 5 and 6. Section 7.1: Introduction to Probability Almost everybody has used some conscious or subconscious estimate of the likelihood of an event happening at some point in their life. Such estimates are often

More information

3.2 Probability Rules

3.2 Probability Rules 3.2 Probability Rules The idea of probability rests on the fact that chance behavior is predictable in the long run. In the last section, we used simulation to imitate chance behavior. Do we always need

More information

In this initial chapter, you will be introduced to, or more than likely be reminded of, a

In this initial chapter, you will be introduced to, or more than likely be reminded of, a 1 Sets In this initial chapter, you will be introduced to, or more than likely be reminded of, a fundamental idea that occurs throughout mathematics: sets. Indeed, a set is an object from which every mathematical

More information

40h + 15c = c = h

40h + 15c = c = h Chapter One Linear Systems I Solving Linear Systems Systems of linear equations are common in science and mathematics. These two examples from high school science [Onan] give a sense of how they arise.

More information

4 A Catalogue of Functions and Inequalities 8. SECTION E Modulus Function

4 A Catalogue of Functions and Inequalities 8. SECTION E Modulus Function 4 A Catalogue of Functions and Inequalities 8 SECTION E Modulus Function By the end of this section you will be able to visualize the geometric interpretation of the modulus function derive some inequalities

More information

arxiv: v1 [math.ca] 7 Apr 2019

arxiv: v1 [math.ca] 7 Apr 2019 SanD primes and numbers. Freeman J. Dyson, Norman E. Frankel, Anthony J. Guttmann Institute of Advanced Study, Princeton, NJ 08540, USA. School of Physics, The University of Melbourne, Victoria 3010, Australia.

More information

SOME FAMOUS UNSOLVED PROBLEMS. November 18, / 5

SOME FAMOUS UNSOLVED PROBLEMS. November 18, / 5 SOME FAMOUS UNSOLVED PROBLEMS November 18, 2014 1 / 5 SOME FAMOUS UNSOLVED PROBLEMS Goldbach conjecture: Every even number greater than four is the sum of two primes. November 18, 2014 1 / 5 SOME FAMOUS

More information

Asymptotic formulae for the number of repeating prime sequences less than N

Asymptotic formulae for the number of repeating prime sequences less than N otes on umber Theory and Discrete Mathematics Print ISS 30 532, Online ISS 2367 8275 Vol. 22, 206, o. 4, 29 40 Asymptotic formulae for the number of repeating prime sequences less than Christopher L. Garvie

More information

Lesson 2: Put a Label on That Number!

Lesson 2: Put a Label on That Number! Lesson 2: Put a Label on That Number! What would you do if your mother approached you, and, in an earnest tone, said, Honey. Yes, you replied. One million. Excuse me? One million, she affirmed. One million

More information

MACM 101 Discrete Mathematics I. Exercises on Predicates and Quantifiers. Due: Tuesday, October 13th (at the beginning of the class)

MACM 101 Discrete Mathematics I. Exercises on Predicates and Quantifiers. Due: Tuesday, October 13th (at the beginning of the class) MACM 101 Discrete Mathematics I Exercises on Predicates and Quantifiers. Due: Tuesday, October 13th (at the beginning of the class) Reminder: the work you submit must be your own. Any collaboration and

More information

9.4. Mathematical Induction. Introduction. What you should learn. Why you should learn it

9.4. Mathematical Induction. Introduction. What you should learn. Why you should learn it 333202_090.qxd 2/5/05 :35 AM Page 73 Section 9. Mathematical Induction 73 9. Mathematical Induction What you should learn Use mathematical induction to prove statements involving a positive integer n.

More information

Complex numbers. Learning objectives

Complex numbers. Learning objectives CHAPTER Complex numbers Learning objectives After studying this chapter, you should be able to: understand what is meant by a complex number find complex roots of quadratic equations understand the term

More information

The Riddle of Primes

The Riddle of Primes A talk given at Dalian Univ. of Technology (Nov. 16, 2012) and Nankai University (Dec. 1, 2012) The Riddle of Primes Zhi-Wei Sun Nanjing University Nanjing 210093, P. R. China zwsun@nju.edu.cn http://math.nju.edu.cn/

More information

Introduction to AI Learning Bayesian networks. Vibhav Gogate

Introduction to AI Learning Bayesian networks. Vibhav Gogate Introduction to AI Learning Bayesian networks Vibhav Gogate Inductive Learning in a nutshell Given: Data Examples of a function (X, F(X)) Predict function F(X) for new examples X Discrete F(X): Classification

More information

Week 2: Sequences and Series

Week 2: Sequences and Series QF0: Quantitative Finance August 29, 207 Week 2: Sequences and Series Facilitator: Christopher Ting AY 207/208 Mathematicians have tried in vain to this day to discover some order in the sequence of prime

More information

SECTION 2.5: FINDING ZEROS OF POLYNOMIAL FUNCTIONS

SECTION 2.5: FINDING ZEROS OF POLYNOMIAL FUNCTIONS SECTION 2.5: FINDING ZEROS OF POLYNOMIAL FUNCTIONS Assume f ( x) is a nonconstant polynomial with real coefficients written in standard form. PART A: TECHNIQUES WE HAVE ALREADY SEEN Refer to: Notes 1.31

More information

New evidence for the infinitude of some prime constellations

New evidence for the infinitude of some prime constellations New evidence for the infinitude of some prime constellations Thomas R. Nicely http://www.trnicely.net ABSTRACT A conjecture of Hardy and Littlewood, implying the twin-primes conjecture and featured in

More information

STRATEGIES OF PROBLEM SOLVING

STRATEGIES OF PROBLEM SOLVING STRATEGIES OF PROBLEM SOLVING Second Edition Maria Nogin Department of Mathematics College of Science and Mathematics California State University, Fresno 2014 2 Chapter 1 Introduction Solving mathematical

More information

The Number System (NS) 8.NS.1 Standards for Mathematical Practice (MP): Connections

The Number System (NS) 8.NS.1 Standards for Mathematical Practice (MP): Connections Domain: The Number System (NS) Cluster: Know that there are numbers that are not rational, and approximate them by rational numbers. Standard: 8.NS.1. Know that numbers that are not rational are called

More information

Class 8 Review Problems solutions, 18.05, Spring 2014

Class 8 Review Problems solutions, 18.05, Spring 2014 Class 8 Review Problems solutions, 8.5, Spring 4 Counting and Probability. (a) Create an arrangement in stages and count the number of possibilities at each stage: ( ) Stage : Choose three of the slots

More information

Section F Ratio and proportion

Section F Ratio and proportion Section F Ratio and proportion Ratio is a way of comparing two or more groups. For example, if something is split in a ratio 3 : 5 there are three parts of the first thing to every five parts of the second

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Objective: Students will gain familiarity with using Excel to record data, display data properly, use built-in formulae to do calculations, and plot and fit data with linear functions.

More information

Sifting the Primes. Gihan Marasingha University of Oxford

Sifting the Primes. Gihan Marasingha University of Oxford Sifting the Primes Gihan Marasingha University of Oxford 18 March 2005 Irreducible forms: q 1 (x, y) := a 1 x 2 + 2b 1 xy + c 1 y 2, q 2 (x, y) := a 2 x 2 + 2b 2 xy + c 2 y 2, a i, b i, c i Z. Variety

More information

Mathematics: Essential Learning Expectations: 9 th -12th Grade:

Mathematics: Essential Learning Expectations: 9 th -12th Grade: Mathematics: Essential Learning Expectations: 9 th -12th Grade: Content Standard 1: Number Sense and Operation A student, applying reasoning and problem solving, will use number sense and operations to

More information

FEEG6017 lecture: Akaike's information criterion; model reduction. Brendan Neville

FEEG6017 lecture: Akaike's information criterion; model reduction. Brendan Neville FEEG6017 lecture: Akaike's information criterion; model reduction Brendan Neville bjn1c13@ecs.soton.ac.uk Occam's razor William of Occam, 1288-1348. All else being equal, the simplest explanation is the

More information

Supplementary Notes on Inductive Definitions

Supplementary Notes on Inductive Definitions Supplementary Notes on Inductive Definitions 15-312: Foundations of Programming Languages Frank Pfenning Lecture 2 August 29, 2002 These supplementary notes review the notion of an inductive definition

More information

MATHEMATICS 6180, SPRING 2017 SOME MOTIVATIONAL PROBLEMS IN NUMBER THEORY. p k

MATHEMATICS 6180, SPRING 2017 SOME MOTIVATIONAL PROBLEMS IN NUMBER THEORY. p k MATHEMATICS 680, SPRING 207 SOME MOTIVATIONAL PROBLEMS IN NUMBER THEORY KATHERINE E. STANGE Number theory may be loosely defined as the study of the integers: in particular, the interaction between their

More information

Proof Techniques (Review of Math 271)

Proof Techniques (Review of Math 271) Chapter 2 Proof Techniques (Review of Math 271) 2.1 Overview This chapter reviews proof techniques that were probably introduced in Math 271 and that may also have been used in a different way in Phil

More information

Some Writing Examples

Some Writing Examples Some Writing Examples Assume that A : ( A = n = x, y A : f(x) = f(y)). Let B = n + 1, x, y B, x y, C := B \ {y}, D := B \ {x}. C = n, D = n, x C, y D. Let u B, u x, u y. u C, f(x) = f(u), u D, f(y) = f(u),

More information

Finite Mathematics : A Business Approach

Finite Mathematics : A Business Approach Finite Mathematics : A Business Approach Dr. Brian Travers and Prof. James Lampes Second Edition Cover Art by Stephanie Oxenford Additional Editing by John Gambino Contents What You Should Already Know

More information

Katholieke Universiteit Leuven Department of Computer Science

Katholieke Universiteit Leuven Department of Computer Science On the maximal cycle and transient lengths of circular cellular automata Kim Weyns, Bart Demoen Report CW 375, December 2003 Katholieke Universiteit Leuven Department of Computer Science Celestijnenlaan

More information

Introduction to Sets and Logic (MATH 1190)

Introduction to Sets and Logic (MATH 1190) Introduction to Sets and Logic () Instructor: Email: shenlili@yorku.ca Department of Mathematics and Statistics York University Nov 13, 2014 Quiz announcement The second quiz will be held on Thursday,

More information

5.5 Deeper Properties of Continuous Functions

5.5 Deeper Properties of Continuous Functions 200 CHAPTER 5. LIMIT AND CONTINUITY OF A FUNCTION 5.5 Deeper Properties of Continuous Functions 5.5.1 Intermediate Value Theorem and Consequences When one studies a function, one is usually interested

More information

Exponents, Radicals, and Scientific Notation

Exponents, Radicals, and Scientific Notation General Exponent Rules: Exponents, Radicals, and Scientific Notation x m x n = x m+n Example 1: x 5 x = x 5+ = x 7 (x m ) n = x mn Example : (x 5 ) = x 5 = x 10 (x m y n ) p = x mp y np Example : (x) =

More information

Objectives: Review open, closed, and mixed intervals, and begin discussion of graphing points in the xyplane. Interval notation

Objectives: Review open, closed, and mixed intervals, and begin discussion of graphing points in the xyplane. Interval notation MA 0090 Section 18 - Interval Notation and Graphing Points Objectives: Review open, closed, and mixed intervals, and begin discussion of graphing points in the xyplane. Interval notation Last time, we

More information

Notes and Solutions #6 Meeting of 21 October 2008

Notes and Solutions #6 Meeting of 21 October 2008 HAVERFORD COLLEGE PROBLEM SOLVING GROUP 008-9 Notes and Solutions #6 Meeting of October 008 The Two Envelope Problem ( Box Problem ) An extremely wealthy intergalactic charitable institution has awarded

More information

An Intuitive Introduction to Motivic Homotopy Theory Vladimir Voevodsky

An Intuitive Introduction to Motivic Homotopy Theory Vladimir Voevodsky What follows is Vladimir Voevodsky s snapshot of his Fields Medal work on motivic homotopy, plus a little philosophy and from my point of view the main fun of doing mathematics Voevodsky (2002). Voevodsky

More information

Predicates, Quantifiers and Nested Quantifiers

Predicates, Quantifiers and Nested Quantifiers Predicates, Quantifiers and Nested Quantifiers Predicates Recall the example of a non-proposition in our first presentation: 2x=1. Let us call this expression P(x). P(x) is not a proposition because x

More information

Lesson 5b Solving Quadratic Equations

Lesson 5b Solving Quadratic Equations Lesson 5b Solving Quadratic Equations In this lesson, we will continue our work with Quadratics in this lesson and will learn several methods for solving quadratic equations. The first section will introduce

More information

Fibonacci Numbers. November 7, Fibonacci's Task: Figure out how many pairs of rabbits there will be at the end of one year, following rules.

Fibonacci Numbers. November 7, Fibonacci's Task: Figure out how many pairs of rabbits there will be at the end of one year, following rules. Fibonacci Numbers November 7, 2010 Fibonacci's Task: Figure out how many pairs of rabbits there will be at the end of one year, following rules. Rules: 1. Start with a pair of new rabbits, born in December.

More information

( )= L, where f ( x)= x, a = 4,

( )= L, where f ( x)= x, a = 4, (Section 2.7: Precise Definitions of Limits) 2.7.1 SECTION 2.7: PRECISE DEFINITIONS OF LIMITS LEARNING OBJECTIVES Know rigorous definitions of limits, and use them to rigorously prove limit statements.

More information