Skip to content

This repository presents Python 3 script which is supposed to give new insight into Goldbach's Conjecture.

Notifications You must be signed in to change notification settings

amartis/goldbach-count

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

What this repository is about

This repository presents Python 3 script which is supposed to give new insight into Goldbach's Conjecture.

Goldbach's Conjecture

(Definition on Wikipedia) Every even integer greater than 2 can be expressed as the sum of two primes. Examples:

6 = 3 + 3
8 = 3 + 5
10 = 3 + 7 = 5 + 5
12 = 7 + 5

Goldbach's Combination Count (Simply Goldbach Combination or Goldbach Count)

(Defined here) Given any even integer N which greater than 2, Goldbach combination GC(N) is defined as The count of prime number pairs that sum up to N. Examples:

6 = 3 + 3
Thus GC(6) = 1
8 = 3 + 5
Thus GC(8) = 1
10 = 3 + 7 = 5 + 5
Thus GC(10) = 2
12 = 7 + 5
Thus GC(12) = 1

And so?

CountGoldbachCombination.py calculates Goldbach Counts.

About

This repository presents Python 3 script which is supposed to give new insight into Goldbach's Conjecture.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages