Skip to content

Commit fb5a40b

Browse files
authored
Merge pull request #5 from kolosovpetro/MATH-100
MATH-100. Minimal Goldbach pairs in prime counting
2 parents 6acb7b2 + 6b1a3c7 commit fb5a40b

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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.0.2] - 2025-04-20
9+
10+
### Changed
11+
12+
- Update abstract
13+
- Update readme
14+
815
## [1.0.1] - 2025-04-20
916

1017
### Changed

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# Minimal Goldbach pairs in prime and twin-prime counting
22

3-
Assuming Goldbach's Conjecture holds, every even integer $2N \geq 4$ can be written as $2N = p_i + p_j$
4-
where $(p_i, p_j)$ is called a Goldbach pair.
5-
6-
The minimal Goldbach pair is a pair $(p_i,p_j)$ having the minimal $p_i$ such that $p_j = 2N - p_i$ is also a prime.
7-
8-
We define a function $F_{2N}(P)$ that counts occurrences of $p_i = P$ within the range $6 \leq 2k \leq 2N$.
9-
3+
Goldbach's Conjecture assumes that every even integer $2N \geq 4$ can be written as the sum of two primes
4+
$2N = p_i + p_j$, where $(p_i, p_j)$ is called a Goldbach pair.
5+
The minimal Goldbach pair is a pair $(p_i, p_j)$ such that $p_i$ is minimal and $p_j = 2N - p_i$ is also a prime.
6+
We define a function $F_{2N}(P)$ that counts the occurrences of $p_i = P$ within the range $6 \leq 2k \leq 2N$,
7+
where $P$ is a fixed prime number.
108
In particular, the function $F_{2N}(P)$ provides the following identities in terms of prime counting $\pi(2N)$ and
119
twin-prime counting $\pi_2(2N)$
1210

190 Bytes
Binary file not shown.

src/sections/01_abstract.tex

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
Assuming Goldbach's Conjecture holds, every even integer $2N \geq 4 $ can be written as $2N = p_i + p_j$
2-
where $(p_i, p_j)$ is called a Goldbach pair.
3-
The minimal Goldbach pair is a pair $(p_i,p_j)$ having the minimal $p_i$ such that $p_j = 2N - p_i$ is also a prime.
4-
We define a function $F_{2N}(P)$ that counts occurrences of $p_i = P$ within the range $6 \leq 2k \leq 2N$,
5-
where $P$ is a prime.
1+
Goldbach's Conjecture assumes that every even integer $2N \geq 4$ can be written as the sum of two primes
2+
$2N = p_i + p_j$, where $(p_i, p_j)$ is called a Goldbach pair.
3+
The minimal Goldbach pair is a pair $(p_i, p_j)$ such that $p_i$ is minimal and $p_j = 2N - p_i$ is also a prime.
4+
We define a function $F_{2N}(P)$ that counts the occurrences of $p_i = P$ within the range $6 \leq 2k \leq 2N$,
5+
where $P$ is a fixed prime number.
66
In particular, the function $F_{2N}(P)$ provides the following identities in terms of prime counting $\pi(2N)$ and
77
twin-prime counting $\pi_2(2N)$
88
\[
9-
\pi(2N) = F_{2N+3}(3) + 1, \quad \pi_2(2N) = F_{2N+3}(3) - F_{2N+5}(5)
9+
\pi(2N) = F_{2N+3}(3) + 1; \quad \pi_2(2N) = F_{2N+3}(3) - F_{2N+5}(5)
1010
\]
11-

0 commit comments

Comments
 (0)