Skip to content

Commit 0b20f68

Browse files
authored
Merge pull request #8 from kolosovpetro/MATH-100
MATH-100. Minimal Goldbach pairs in prime counting
2 parents d07d5ae + 772d51f commit 0b20f68

File tree

7 files changed

+44
-20
lines changed

7 files changed

+44
-20
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning v2.0.0](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.1] - 2025-04-22
9+
10+
### Changed
11+
12+
- Minor edits in text
13+
- Add Acknowledgements
14+
- Grammar fixes
15+
816
## [1.1.0] - 2025-04-22
917

1018
### Changed

Folder.DotSettings

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:Boolean x:Key="/Default/UserDictionary/Words/=beleza/@EntryIndexedValue">True</s:Boolean>
3+
<s:Boolean x:Key="/Default/UserDictionary/Words/=yamagishi/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
5.56 KB
Binary file not shown.

src/MinimalGoldbachPairsInPrimesCounting.tex

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,25 @@
7575

7676
\maketitle
7777

78-
% \tableofcontents
78+
\tableofcontents
7979

8080
\freefootnote{Sources: \url{https://github.com/kolosovpetro/MinimalGoldbachPairsInPrimesCounting}}
8181

82+
8283
\section{Introduction} \label{sec:introduction}
8384
\input{sections/02_introduction}
8485

86+
87+
% \section{Discussion on Twin Primes}\label{sec:discussion-on-twin-primes}
88+
% \input{sections/03_discussion_on_twin_primes}
89+
90+
8591
\section{Conclusions}\label{sec:conclusions}
86-
\input{sections/03_conclusions}
92+
\input{sections/conclusions}
93+
94+
95+
\section{Acknowledgements}\label{sec:acknowledgements}
96+
\input{sections/acknowledgements}
8797

8898

8999
\bibliographystyle{unsrt}

src/sections/02_introduction.tex

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,17 @@
1414
For the even integer $10$, we have three pairs: $(3,7), \; (5,5), \; (7,3)$
1515
and the minimal one is $(3,7)$ because
1616
$3$ is the smallest among all $p_i$ values: $3, 5, 7$.
17-
18-
1917
Consider the following minimal Goldbach pairs for even integer $2k$ within the range $6 \leq 2k \leq 50$
2018
\begin{align*}
21-
6 &= 3 + 3, & 30 &= 7 + 23, \\
22-
8 &= 3 + 5, & 32 &= 3 + 29, \\
23-
10 &= 3 + 7, & 34 &= 3 + 31, \\
24-
12 &= 5 + 7, & 36 &= 5 + 31, \\
25-
14 &= 3 + 11, & 38 &= 7 + 31, \\
26-
16 &= 3 + 13, & 40 &= 3 + 37, \\
27-
18 &= 5 + 13, & 42 &= 5 + 37, \\
28-
20 &= 3 + 17, & 44 &= 3 + 41, \\
29-
22 &= 3 + 19, & 46 &= 3 + 43, \\
30-
24 &= 5 + 19, & 48 &= 5 + 43, \\
31-
26 &= 3 + 23, & 50 &= 3 + 47, \\
32-
28 &= 5 + 23, &
19+
6 &= 3 + 3, & 24 &= 5 + 19, & 40 &= 3 + 37, \\
20+
8 &= 3 + 5, & 26 &= 3 + 23, & 42 &= 5 + 37, \\
21+
10 &= 3 + 7, & 28 &= 5 + 23, & 44 &= 3 + 41, \\
22+
12 &= 5 + 7, & 30 &= 7 + 23, & 46 &= 3 + 43, \\
23+
14 &= 3 + 11, & 32 &= 3 + 29, & 48 &= 5 + 43, \\
24+
16 &= 3 + 13, & 34 &= 3 + 31, & 50 &= 3 + 47, \\
25+
18 &= 5 + 13, & 36 &= 5 + 31, & \\
26+
20 &= 3 + 17, & 38 &= 7 + 31, & \\
27+
22 &= 3 + 19, & &
3328
\end{align*}
3429
We can notice that minimal Goldbach pairs with minimal $p_i=3$ produce a sequence of odd prime numbers
3530
$p_j = 3, \; 5, \; 7, \; 11, \; 13, \; 17 \; \dots$ which is quite remarkable:
@@ -55,9 +50,8 @@
5550
Let $G_{\min} (2N)$ be a function that returns a set of minimal Goldbach pairs $(p_i, p_j)$ having $\min p_i$
5651
over the range $6 \leq 2k \leq 2N$
5752
\begin{align*}
58-
G_{\min} (2N) = \{(p_i, p_j) \mid p_i + p_j = 2k \mid 6 \leq 2k \leq 2N \mid \min p_i \}.
53+
G_{\min} (2N) = \{(p_i, p_j) \mid p_i + p_j = 2k \mid 6 \leq 2k \leq 2N \mid \min p_i \}
5954
\end{align*}
60-
6155
For example,
6256
\begin{align*}
6357
G_{\min}(20) = \{
@@ -94,9 +88,16 @@
9488
Hence, by excluding the elements of the set $W_{2N}(5)$ from the set $W_{2N}(3)$ yields the sequence of
9589
lesser twin primes~\cite{oeis:A001359}
9690
\begin{align*}
97-
W_{2N}(3) \setminus W_{2N}(5) = \{ 3, \; 5, \; 11, \; 17, \; 29, \; 41, \; 59, \; 71, \; 101, \; 107, \; 137, \; \dots, \; p \leq 2N - 3 \}
91+
\mathtt{Lesser \; twin \; primes} &= \{ 3, \; 5, \; 11, \; 17, \; 29, \; 41, \; 59, \; 71, \; 101, \; 107, \; 137, \; \dots, \; p \leq 2N - 3 \} \\
92+
&= W_{2N}(3) \setminus W_{2N}(5)
9893
\end{align*}
99-
This implies that the number of twin primes in range $6 \leq 2k \leq 2N$ can be expressed in terms of $F_{2N}(P)$
94+
Above relation holds because the function $W_{2N}(5)$ generates the primes $p=6n+1$ such that either
95+
\begin{itemize}
96+
\item $p+2$ is composite: $p+2 = 3(2n+1)$
97+
\item $p-2$ is composite or lesser twin prime
98+
\end{itemize}
99+
As a result, by excluding $W_{2N}(3) \setminus W_{2N}(5)$ we get the sequence of lesser twin primes.
100+
This implies that the number of twin primes $\pi_2$ in range $6 \leq 2k \leq 2N$ can be expressed in terms of $F_{2N}(P)$
100101
\begin{align*}
101102
\pi_2 (2N) = F_{2N+3}(3) - F_{2N+5}(5)
102103
\end{align*}

src/sections/acknowledgements.tex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
I am grateful to Michel Eduardo Beleza Yamagishi for incredible insights and ideas related to minimal Goldbach pairs
2+
and their distribution.

0 commit comments

Comments
 (0)