Primes -- Probability that the sum of two random integers is Prime

In summary: For example ##n=2^{256}##, the approximation is about ##1.4*10^{71}##, but ##\pi(2^{256})## is about ##2.2*10^{75}##.You need to remember just how bad that approximation is for... well, pretty much any value that matters.Yes, I agree. But I think the point is that, in this particular case, the approximation is not so bad. Although, yes, it is bad.Yes, I agree. But I think the point is that, in this particular case, the approximation is not so bad. Although, yes, it is bad.It's
  • #1
donglepuss
17
4
TL;DR Summary
if i select two integers at random between 1 and 1,000, what is the probability that their sum will be prime?
im thinking i should just integrate (binominal distribution 1-2000 * prime probability function) and divide by integral of bin. distr. 1-2000.

note that I am looking for a novel proof, not just some brute force calculation.

(this isn't homework, I am just curious.)
 
Mathematics news on Phys.org
  • #2
Any number n is expressed n-1 ways as
[tex]n=1+(n-1)=2+(n-2)=..=(n-1)+1[/tex]
for n##\leq##N say N=1000. For larger n
[tex]2000=1000+1000[/tex]
[tex]1999=1000+999=999+1000[/tex]
...
There are 2N-(n-1) ways of expressionSo the probability of you look for could be
[tex]\frac{\sum_{n=1}^{2N} min\{(n-1), 2N-(n-1)\}p(n)}{\sum_{n=1}^{2N} min\{(n-1), 2N-(n-1)\}}[/tex][tex]=\frac{\sum_{n=1}^{N} (n-1)p(n)+\sum_{n=N+1}^{2N} \{2N-(n-1)\}p(n)}{N^2}[/tex]
where p(n)=1 for prime number n and p(n)=0 for otherwise, though I am not sure whether it satisfies randomness you expect or not.
 
Last edited:
  • Like
Likes malawi_glenn
  • #3
There are 303primes between 1 and 1000, one is even 302 are odd.
2 = 1+1: one possibility
3 = 1+2, 2+1: two possibilities
5= 1+4, 2+3, 3+2, 4+1: four possibilities
7= 1+6, 2+5, 3+4, 4+3, 5+2, 6+1: six positibilities
11 = 1+10, 2+9, 3+8, 4+7, 5+6, 6+5, 7+4, 8+3, 9+2, 10 +1: ten positibilities
Note that the number of possibilities to add two numbers to a prime is ##p## is ##p-1##

In order to perform a formal proof which is not a "brute force" calculation, you need a function that gives the primes between 1 and 2000 (as mentione in the post above). Otherwise you have to do a brute force calculation.
 
  • Like
Likes PeroK
  • #4
malawi_glenn said:
Otherwise you have to do a brute force calculation.
Which is also known as counting. And that's sometimes a useful idea.
 
  • #5
PeroK said:
Which is also known as counting. And that's sometimes a useful idea.
Yeah, I was just connecting with the opening post nomenclature ;)
 
  • #6
For primes ##p \le 1001## there are ##p - 1## ways to get them.

For primes ##1001 < p < 2000## there are ##2001 - p## ways to get them.
 
  • Like
Likes malawi_glenn
  • #7
probability is ##\dfrac{146178}{1000^2} \approx 14.6\% ##
 
  • Like
Likes anuttarasammyak
  • #8
malawi_glenn said:
probability is ##\dfrac{146178}{1000^2} \approx 14.6\% ##

There are 168 prime numbers between 1 to 1000, 16.8% and 303 prime numbers between 1 to 2000, 15.15%.
1660464460944.png
 
Last edited:
  • #9
anuttarasammyak said:
There are 168 prime numbers between 1 to 1000, 16.8%. So I assume the distribution becomes sparse for larger number region.
But the question was if you draw two numbers 1-1000, is their sum a prime?
You can therefore get primes also between 1001 and 2000...

You also have to take into account of many ways there are to add up numbers to a prime.

The question was not "draw a random number, what is the probability that it is prime?"

Yes the distribution of primes become more and more sparse (##\pi(x)## goes as ##x / \ln(x)## for large ##x##)

As I wrote, there are 303 primes between 1 and 2000
that is 15.15% to be a prime - but again, this is not the answer to the question rasied by the OP.
Between 1 and 3000 is 430 primes, prob that one number is prime is 14.33%
 
  • Like
Likes PeroK and anuttarasammyak
  • #10
What I said in the previous post has no direct relation to the problem. I apologize confusion it may cause.
 
  • #11
anuttarasammyak said:
What I said in the previous post has no direct relation to the problem. I apologize confusion it may cause.
Then why quoting my post? Two unrelated problems.
 
  • #12
I was curious to know the difference on the results of "sum of two numbers are prime" and "a number is prime". Again I apologize my digression.
 
  • Like
Likes malawi_glenn
  • #13
More results

Drawing two numbers 1-100, their sum is prime: 22.9%
Drawing two numbers 1-500, their sum is prime: 16.2%
Drawing two numbers 1-1000, their sum is prime: 14.6%
Drawing two numbers 1-5000, their sum is prime: 11.9%
Drawing two numbers 1-10000, their sum is prime: 11.0%
 
  • #14
malawi_glenn said:
More results

Drawing two numbers 1-100, their sum is prime: 22.9%
Drawing two numbers 1-500, their sum is prime: 16.2%
Drawing two numbers 1-1000, their sum is prime: 14.6%
Drawing two numbers 1-5000, their sum is prime: 11.9%
Drawing two numbers 1-10000, their sum is prime: 11.0%
Compare with the prime counting function ##\pi(n)##:

npi(n)
100​
21.71%​
500​
16.09%​
1000​
14.48%​
5000​
11.74%​
10000​
10.86%​
 
  • Like
Likes malawi_glenn
  • #15
Yeah, it is very close.

Should be a reason for that.

Judging from the prime number distrubutions:

1660491491329.png


1660491513421.png


The left- and rightmost bins contribute very little to the overall sum of favorable outcomes.
For 1-20000 those two bins contribute 15.6%, and that is 0.156×0.11 = 0.017 = 1.7%
 
  • #16
There is an elegant closed form solution if you limit the problem to only even prime numbers …
 
  • Haha
Likes jbriggs444
  • #17
malawi_glenn said:
Yeah, it is very close.

Should be a reason for that.
Although the sum of two integers has a bell-shaped distribution, ultimately it does not prefer primes to non-primes or vice versa. You would, therefore, expect it to be close to the probability that a single integer at the mid-point of the distribution is prime.
 
  • Like
Likes malawi_glenn
  • #18
PeroK said:
Compare with the prime counting function ##\pi(n)##:

npi(n)
100​
21.71%​
Wait a minute. There are 25 primes less than 100. Yet you quote 21.71 percent. What's the deal? Surely 25% of the integers in the range [1 - 100] are prime.
 
  • Like
Likes PeroK
  • #19
jbriggs444 said:
Wait a minute. There are 25 primes less than 100. Yet you quote 21.71 percent. What's the deal? Surely 25% of the integers in the range [1 - 100] are prime.
I just used the asymptotic limit ##\frac 1 {\ln(n)}##.
 
  • #20
PeroK said:
I just used the asymptotic limit ##\frac 1 {\ln(n)}##.
So this was not, in fact, quoting correct values for ##\pi(n)##. This, in turn, casts doubt on the significance of a comparison between the quoted values and the probability of primeness for a particular triangular distribution of small finite numbers.

Integrating the product of a high-at-the-ends function (the incremental prime counting function) and a high-in-the-middle function (the distribution of the sum of two d100's) should yield a result that is lower than the product of two more nearly uniform distributions with the same mean values.
 
  • Like
Likes malawi_glenn
  • #21
jbriggs444 said:
So this was not, in fact, quoting correct values for ##\pi(n)##.
I forgot I picked the approximation, because I was thinking about large ##n##. I would expect the sum of two integers to converge to the prime counting function for large ##n##. Interesting, it seems to stick quite close to ##\frac 1 {\ln(n)}##. We need data for a larger ##n## in any case:

n1/ln(n)pi(n)/n
100​
22.9%​
21.7%​
25.0%​
500​
16.2%​
16.1%​
19.0%​
1000​
14.6%​
14.5%​
16.8%​
5000​
11.9%​
11.7%​
13.4%​
10000​
11.0%​
10.9%​
12.3%​
 
  • Like
Likes malawi_glenn
  • #22
This is as high as I can go with my list of the first 100 million primes. It seems to converge more to the logarithmic approximation than to the counting function itself.

nAnswer1/ln(n)pi(n)/n
100,000​
8.800%​
8.686%​
9.592%​
1,000,000​
7.306%​
7.238%​
7.850%​
5,000,000​
6.538%​
6.483%​
6.970%​
10,000,000​
6.255%​
6.204%​
6.646%​
49,999,990​
5.682%​
5.641%​
6.002%​
 
Last edited:
  • Like
Likes jbriggs444 and malawi_glenn
  • #23
PeroK said:
I forgot I picked the approximation, because I was thinking about large ##n##.
You need to remember just how bad that approximation is for any practical value of ## n ## (the error is greater than 1.5% for all n less than ## 10^{29} ##).

donglepuss said:
note that I am looking for a novel proof, not just some brute force calculation.

(this isn't homework, I am just curious.)
As you can infer from the mistaken assumptions followed through above, the irregularity of the prime counting function means that there can never be a "novel proof", the only way to calculate the probability exactly for any ## n ## is brute force (i.e. by summing over a number of terms not less than ## \pi(n) ##).
 
  • #24
PeroK said:
This is as high as I can go with my list of the first 100 million primes. It seems to converge more to the logarithmic approximation than to the counting function itself.
I had alluded to an expected skew based on the shape of the distributions. Let us try to see how that effect plays out. Rather than ##\pi(n)##, we will use the more nicely behaved ##\frac{1}{\ln(n)}## prime density function.

What is the probability that 2d100 will yield a "prime" result based on this "prime" density distribution? That should be$$\frac{1}{10000} (\sum_{n=2}^{101} \frac{n-1}{\ln(n)}+ \sum_{n=102}^{200} \frac{201-n}{\ln(n)})$$
What is the probability that 1d199+1 will yield a "prime" result based on this prime density distribution? That should be$$\frac{1}{199} (\sum_{n=2}^{200} \frac{1}{\ln(n)})$$
Compare this to the result expected from 2d100 (or d199+1) with a uniform "prime" density inferred from the density at the midpoint of the distribution. That should be$$\frac{1}{\ln(101)}$$
So yes there is a skew. As expected, the product of two distributions, one concave upward and one concave downward is less than the product of a concave upward distribution and a uniform distribution. Also, the mean of a concave up distribution is greater than its midpoint value.
my code said:
C:\Users\John\Documents>primes.pl
2d100: 0.22610721620634
1d199+1: 0.251473806850781
Uniform prime density: 0.216679065335532

C:\Users\John\Documents>primes.pl
2d1000: 0.148260310578937
1d1999+1: 0.15739459190828
Uniform prime density: 0.144743883947654

C:\Users\John\Documents>primes.pl
2d10000: 0.110363723394825
1d19999+1: 0.114426785937757
Uniform prime density: 0.108572441724441

C:\Users\John\Documents>primes.pl
2d100000: 0.0879394496681733
1d199999+1: 0.0901797001323427
Uniform prime density: 0.0868588209364143

C:\Users\John\Documents>primes.pl
2d1000000: 0.0731041904157329
1d1999999+1: 0.0745273494626591
Uniform prime density: 0.0723824084113312

C:\Users\John\Documents>primes.pl
2d10000000: 0.0625579197454417
1d19999999+1: 0.0635452443175609
Uniform prime density: 0.0620420684583999

C:\Users\John\Documents>primes.pl
2d100000000: 0.0546736999176157
1d199999999+1: 0.0553998734542306
Uniform prime density: 0.0542868102084359

C:\Users\John\Documents>primes.pl
2d1000000000: 0.0485557820044112
1d1999999999+1: 0.0491126509835289
Uniform prime density: 0.0482549424313661
Edit: made the number of sides on the dice into a parameter and re-ran a few times. The code really starts to strain at 100 million. Took a couple minutes. A billion took more like twenty minutes.

With 64 bit floats, we are probably starting to tickle the edges of precision loss at 1 billion. Adding up a column of a billion or two small numbers, some almost a factor of a billion larger than others calls for 18 digits and we only have 16 or 17. If I wanted to do things right, I'd have been summing the columns in order from low to high to minimize that particular problem. Doing sub-totals would work even better. It might have also been worth merging the separate loops, buying a factor of two on the redundant calls to log(). [But Kernighan and Plauger lesson 1: "Write clearly; don't be too clever"]

That's before doing any of that mathematician magic stuff, looking for a better approximate formula or a way to telescope the series.

Bat Signal to @PeroK -- take a look at the extra results editted in.
 
Last edited:
  • Informative
Likes PeroK
  • #25
What happens as ##N \to \infty##?
 
  • Like
Likes jbriggs444
  • #26
PeroK said:
What happens as ##N \to \infty##?
Sadly, I am more of a programmer than a mathematician.
 
  • #27
jbriggs444 said:
Sadly, I am more of a programmer than a mathematician.
False modesty!
 
  • Haha
Likes jbriggs444

1. What is the definition of a prime number?

A prime number is a positive integer that is only divisible by 1 and itself. This means that it has exactly two positive divisors.

2. How do you calculate the probability that the sum of two random integers is prime?

The probability can be calculated by dividing the number of possible outcomes where the sum is prime by the total number of possible outcomes. This can be represented by the formula P = # of prime sums / total # of possible sums.

3. What is the range of possible outcomes for the sum of two random integers?

The range of possible outcomes is from 2 (the smallest prime number) to 2n (where n is the largest integer used in the sum). This means that the maximum possible sum of two random integers is 2n, and the minimum possible sum is 2.

4. Can the probability of the sum of two random integers being prime be greater than 50%?

No, the probability cannot be greater than 50%. As the range of possible outcomes increases, the number of prime sums will decrease, making the probability smaller.

5. How does the probability of the sum of two random integers being prime change as the range of possible outcomes increases?

The probability decreases as the range of possible outcomes increases. This is because the number of possible prime sums decreases as the range increases, resulting in a smaller probability.

Similar threads

Replies
13
Views
1K
Replies
7
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
6
Views
951
  • Precalculus Mathematics Homework Help
Replies
4
Views
2K
  • General Math
Replies
2
Views
991
  • Precalculus Mathematics Homework Help
Replies
17
Views
2K
  • General Math
Replies
12
Views
964
Replies
18
Views
2K
  • General Math
Replies
1
Views
1K
Back
Top