Can Unique Arrangements of Two Primes Generate All Even Numbers?

  • Thread starter toddkuen
  • Start date
  • Tags
    Interesting
In summary, the conversation discusses the process of taking a prime and doubling it, then adding together unique arrangements of two primes from a range of primes. The resulting sums are then checked for duplicates and it is found that certain primes can generate all even numbers within a certain range, but not all primes have this property. The conversation also mentions a conjecture involving a constant k that can be used to find primes that can generate all even numbers within a certain range.
  • #1
toddkuen
15
0
Take a prime[n] and double it, i.e., e.g., Pn (n=7) so prime[7] is 17, doubled to 34.

Take all unique arrangements of two primes from P2 (3) to P7 (17):

{3,3}, {3,5}, {5,5}, ..., {13, 17}, {17,17}

Add the pairs together, e.g., {3,3} = 3 + 3 = 6

Now eliminate duplicates, i.e., {5,5} and {3,7} both add up to 10, so just have one 10.

Then for 19 and 109 I find that all even numbers less than or equal to 19*2 and 109*2 respectively appear after you eliminate duplicates, i.e., all primes less than or equal to Pn generate all even numbers less than or equal to 2*Pn for 19 and 109.
 
Physics news on Phys.org
  • #3
More specific than GC I think.

While 34 is 17*2 no combination of primes from 3 to 17 can generate 32.

The primes from 3 to 19 can generate all evens less than 19*2 = 38.

Are there more besides 19 and 109?
 
  • #4
Suppose the limit is P. Then 2P can of course be expressed, but 2P - 2 cannot be expressed unless P-2 is prime. 34/2 - 2 is composite, so 34 - 2 is not the sum of two primes in {3, 5, ..., 17}.
 
  • #5
CRGreathouse said:
Suppose the limit is P. Then 2P can of course be expressed, but 2P - 2 cannot be expressed unless P-2 is prime. 34/2 - 2 is composite, so 34 - 2 is not the sum of two primes in {3, 5, ..., 17}.

Not sure I follow. 31 is prime as is 29 - neither can express 56 in {3..31}...?
 
  • #6
toddkuen said:
Not sure I follow. 31 is prime as is 29 - neither can express 56 in {3..31}...?

Yes, I can see you didn't follow. But let's address this first: what particular claim are you making about 19 and 109? If you can answer this precisely, I may be able to expand the list.
 
  • #7
For any given prime P double the prime, e.g., 17 * 2 = 34.

Take all unique combinations of the primes from 3 to P, e.g., 3,5,7,11,13,17 and combine pairs in all possible ways, e.g., {3,3}, {3,5}, ..., {13,17}, {17,17}.

Add the pairs to get the sums - this generates even numbers (excluding 2 and 4) - ignore duplicates.

You will see that 17 generates all even numbers less than or equal to 34 except 32.

19 generates all even numbers including 2 * 19 = 38 as does 109.

In general for P combinations of this sort generate most evens, but not all, from 3..2*P.

I hope this helps...
 
  • #8
toddkuen said:
For any given prime P double the prime, e.g., 17 * 2 = 34.

Take all unique combinations of the primes from 3 to P, e.g., 3,5,7,11,13,17 and combine pairs in all possible ways, e.g., {3,3}, {3,5}, ..., {13,17}, {17,17}.

Add the pairs to get the sums - this generates even numbers (excluding 2 and 4) - ignore duplicates.

You will see that 17 generates all even numbers less than or equal to 34 except 32.

19 generates all even numbers including 2 * 19 = 38 as does 109.

In general for P combinations of this sort generate most evens, but not all, from 3..2*P.

I hope this helps...

Just a thought: all positive even numbers. I doubt, for example, that I could get -1000 using this.
 
  • #9
toddkuen said:
I hope this helps...

I think, perhaps, you're looking for primes P such that for all 2 <= n <= P, there are p <= q <= P with p + q = 2n. Is that right?

In that case I find no examples larger than 109. Any example larger than 19 must have
  • P = 4 (mod 15)
  • P - 2 prime
  • P - 6 prime
  • P - 8 prime
  • P - 20 prime
  • P - 12 or P - 18 prime
  • P - 26 or P - 32 prime
  • P - 26 or P - 38 prime
which should speed any searches.I have verified by computer that there are no examples below a billion (10^9).
 
Last edited:
  • #10
Yes - 3 (not 2) <= n <= P with p <= q <= P and p + q = 2n. (1)

I have developed the following conjecture relative to this:

There is a P2 such that for large values of P P <= P2 < 1.015P such that (1) generates all positive (thanks to Char Limit) evens less than or equal to 2*P.
 
  • #11
toddkuen said:
Yes - 3 (not 2) <= n <= P with p <= q <= P and p + q = 2n. (1)

Of course the 2 comes free.

toddkuen said:
There is a P2 such that for large values of P P <= P2 < 1.015P such that (1) generates all positive (thanks to Char Limit) evens less than or equal to 2*P.

As written this doesn't make sense. (For any given P2, "for large enough P with P <= P2 < 1.015P, foo is true" is true regardless of foo, since for large enough P the inequality fails to hold.) Also, you don't explain how you modify (1) to use P2. My guess:

There is a k, 1 <= k <= 1.015, such that for large enough primes P and all 3 <= n <= P, there are primes p <= q <= kP with p + q = 2n.

This is of course equivalent to

For large enough primes P and all 3 <= n <= P, there are primes p <= q < 1.015P with p + q = 2n.
 
Last edited:
  • #12
No examples (for the original version) up to 4 billion. My latest algorithm takes (empirical) time ~ x^1.7 to find the examples up to x.
 
  • #13
CRGreathouse said:
...

For large enough primes P and all 3 <= n <= P, there are primes p <= q < 1.015P with p + q = 2n.

Yes. Sorry about my notation.

Given k represents 1.015 then it appears to me that k bounds the choices of p and q in an interesting way...

I do not believe there are any other primes besides 19 and 109 that work where k = 1.
 
  • #14
toddkuen said:
Given k represents 1.015 then it appears to me that k bounds the choices of p and q in an interesting way...

I suspect it's true for k = 1 + epsilon for any epsilon > 0. In fact it's probably true with p <= q <= P + f(P) for many slow-growing functions f.
 
  • #15
CRGreathouse said:
I suspect it's true for k = 1 + epsilon for any epsilon > 0. In fact it's probably true with p <= q <= P + f(P) for many slow-growing functions f.

Since you have to advance some integral number of primes past P to include all evens below 2P I don't see how arbitrarily small epsilons work. I calculate the missing evens below 109 (I guess its true for 6, 10, 14 and 26 as well but since those are easily checked by hand I forgot about them) as

{6, {}},
{10, {}},
{14, {}},
{22, {20}},
{26, {}},
{34, {32}},
{38, {}},
{46, {44}},
{58, {44, 50, 54, 56}},
{62, {56}},
{74, {64, 70, 72}},
{82, {76, 80}},
{86, {76}},
{94, {92}},
{106, {92, 98, 102, 104}},
{118, {92, 98, 104, 108, 110, 114, 116}},
{122, {110, 116}},
{134, {116, 124, 130, 132}},
{142, {116, 136, 140}},
{146, {136}},
{158, {136, 148, 154, 156}},
{166, {148, 160, 164}},
{178, {164, 170, 174, 176}},
{194, {174, 182, 184, 188, 190, 192}},
{202, {182, 188, 192, 196, 200}},
{206, {188, 196}},
{214, {188, 212}},
{218, {}},
...

I have developed a good model for this behavior.
 
  • #16
toddkuen said:
Since you have to advance some integral number of primes past P to include all evens below 2P I don't see how arbitrarily small epsilons work.

Let's say you choose epsilon = 0.000001. Then perhaps "large enough P" is 10^50 + 151, at which point you have 10^44 primes past P to use.
 
  • #17
I was thinking of epsilon in terms of just enough primes (m) beyond Pn to complete the evens.

k = (1/Pn+m) - (1/Pn)/(1/Pn), Pn * (1 + k) = Pm, epsilon >= k
 

What does "Interesting note on 2*Pn" mean?

"Interesting note on 2*Pn" refers to a mathematical concept known as the double of a point on a plane. This means that the coordinates of the point are multiplied by 2, resulting in a point that is twice as far from the origin.

Why is "Interesting note on 2*Pn" important in mathematics?

The concept of the double of a point has various applications in geometry, algebra, and even physics. It is used to calculate distances, angles, and transformations on a plane. It also plays a role in the study of conic sections and elliptic curves.

How is "Interesting note on 2*Pn" related to other mathematical concepts?

The double of a point is closely related to the concepts of reflection, dilation, and rotation. It is also connected to the Pythagorean theorem and the concept of symmetry. Additionally, it has applications in complex numbers and the study of polynomials.

Can you provide an example of "Interesting note on 2*Pn" in real life?

One example of the double of a point can be seen in the reflection of light rays. When a light ray hits a flat mirror, it bounces off at the same angle but in the opposite direction. This can be thought of as the double of the original ray, with the mirror acting as the origin.

Are there any limitations or exceptions to "Interesting note on 2*Pn"?

While the concept of the double of a point is widely applicable, there are some limitations and exceptions. For example, it does not work for points on a line perpendicular to the origin, as their coordinates would become infinite. Additionally, it may not hold true in non-Euclidean geometries or other abstract mathematical structures.

Similar threads

  • Calculus and Beyond Homework Help
Replies
1
Views
1K
  • Linear and Abstract Algebra
Replies
2
Views
1K
  • General Math
Replies
24
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
32
Views
3K
  • Precalculus Mathematics Homework Help
Replies
8
Views
418
  • Linear and Abstract Algebra
Replies
6
Views
3K
Replies
2
Views
5K
Replies
6
Views
2K
  • Linear and Abstract Algebra
Replies
4
Views
2K
  • Linear and Abstract Algebra
Replies
1
Views
3K
Back
Top