[ 3 / biz / cgl / ck / diy / fa / ic / jp / lit / sci / vr / vt ] [ index / top / reports ] [ become a patron ] [ status ]
2023-11: Warosu is now out of extended maintenance.

/sci/ - Science & Math


View post   

File: 43 KB, 320x260, trouble-with-fractions_320x260.jpg [View same] [iqdb] [saucenao] [google]
[ERROR] No.3576347 [Reply] [Original]

So tell me /sci/
Can every even number greater than 2 be expressed as the sum of two prime numbers?

Examples:
4 = 2 + 2
6 = 3 + 3
8 = 3 + 5
10 = 3 + 7 = 5 + 5

>> No.3576361

it can be expressed as the sum of a prime and co-prime.

>> No.3576382

No, but every number greater than 3 can.

>> No.3576399

>>3576361

> 5 = 3 + 3
I do believe 3 is not co-prime to 3.

>>3576382
Not every number, every even number.

>> No.3576402

http://www.youtube.com/watch?v=PtsrAw1LR3E

i don't remember if it is mentioned in this video but you surely want to give it a look

>> No.3576405

no. good luck to do it with 37. (impossible since if you take two odd prime numbers, they'll add up to an even number, so one of the two prime numbers must be 2. And 35 will be the other. 35 isn't prime.)
/thread?

>> No.3576409

>>3576399
Of fuck what a fail

> 6 = 3 + 3

>> No.3576416

assume you cant
then there exists 2 numbers k and g such that one cant be written as p + n with n and p prime
kg = (p+n)(m+q) = pm + pq + nm + nq all prime
these are 2 new numbers i = (pm + pq) and j = (nm + nq) both sums of co-primes
unless k and g are both prime, kg can always be written as ij = (pm + pq)(nm + nq)
now kg = (pm + pq)(nm + nq)
but kg = (p+n)(m+q)
and (pm + pq)(nm + nq) =/= (p+n)(m+q)
so our initial assumption is incorrect and you can.

>> No.3576424

>>3576405
37 is prime. Derp.

>> No.3576426

>>3576424
so? it's not a sum of two primes.

>> No.3576445

>>3576405
>37
>even
>2011

>> No.3576441

>>3576347
Holy shit, 10 billion people have trouble with fractions...?

That's a LOT more than I thought...

>> No.3576458

>>3576426
Wtf? lol I think you just proved Goldbach's conjecture false.

>> No.3576462

>>3576458
Wait no. 37 is not even.

>> No.3576479

>>3576462
yes, OP might have mixed "any number" with "any even number" ;)

>> No.3576481

hahaha this definitely *isn't* a famous unproven conjecture/open problem

>> No.3576485

>every even integer greater then 2
>solved it! 37

The fuck?

>> No.3576489

>>3576485
37 isn't even.

>> No.3576504

>>3576479
>Can every even number greater than 2
>Can every even number
>even number

>> No.3577087

b = 2m {m| 2 ≤ m < ∞, b ∈ ℤ}
b = a + c where a and c are prime. There is no known formula for the sequence of prime numbers. However, we can make some observations. The sum of any two primes is even unless only one is 2. As b increases, the value and number of digits of the primes gradually increase. The difference of two primes sequentially adjacent is relatively small even up to primes just below 1000. This means that we have a rather robust collection of numbers to create an even integer out of two of them. I can only make the educated guess that all even integers is the sum of two primes. It pretty much impossible to prove without a function for the set of prime numbers.

>> No.3578005

5740
5742
5744
5746
5748
5750
5752
5754
5756
5758
5760
5762
5764
5766
5768
5770
5772
5774
5776
5778
5780
5782
5784
5786
5788
5790
5792
5794

>> No.3578043

#include <cstdlib>
#include <iostream>

using namespace std;

int main(){
double c(2);
while(true){
bool prime(true);
for(size_t i=2;i<(c/2)+1;i++){
if(c/double(i)==int(c/double(i))){
prime=false;
}
}
if(prime){
cout<<c<<endl;
}
c++;
}
return 0;
}
./a.out >prime