English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

without any calculator, by algebra.

2007-07-30 02:24:25 · 10 answers · asked by Anonymous in Science & Mathematics Mathematics

10 answers

The number 900720143 can be written as
(30012)^2 -1. so it is not a prime.
[we know (a^2-1) can be divided by a+1 and a-1]

2007-07-30 03:01:17 · answer #1 · answered by R D 2 · 3 1

The only way I know of to PROVE a number is prime is to divide it by every known prime lower than its square root, and check for a remainder. Of course, this assumes that you know all the primes less than the square root, which is what makes this problem very difficult.

I don't know that there is an algebraic method other than this iterative technique to find or prove primeness. This is why the search for large prime numbers is so difficult.

2007-07-30 02:51:34 · answer #2 · answered by dansinger61 6 · 2 1

all primes > 3 are of the form 6n + 1. If your number were a prime it would have a remainder of 1 when divided by 6. It doesn't, so not prime.

Disregard this hasty response --my error!!!!

It is true that primes are 6n + 1, but not all of 6n + 1 are prime as others have pointed out. It can also be shown that one less than the square of a prime number > 3 is evenly divisible by 24. So if someone has the time, paper, patinnce or a good enough calculator/spreadsheet, square 900720143, subtract 1, and if the result is divisible by 24, it's prime, otherwise not.

2007-07-30 02:34:16 · answer #3 · answered by John V 6 · 1 4

There is no way to determine prime numbers other than applying algorithms.

A simple, ancient algorithm for finding all prime numbers up to a specified integer. (Modify limit according to your need)

limit = 1000000
sieve$ = string of the character "P" with length limit

prime = 2
repeat while prime2 < limit
set the character at the index of each multiple of prime (excluding index prime * 1) in sieve$ to "N"
prime = index of the next instance of "P" in sieve$ after index prime
end repeat

print the index of each instance of "P" in sieve$



A fast, modern algorithm for finding all prime numbers up to a specified integer.


// arbitrary search limit
limit ← 1000000

// initialize the sieve
is_prime(i) ← false, i ∈ [5, limit]

// put in candidate primes:
// integers which have an odd number of
// representations by certain quadratic forms
for (x, y) in [1, √limit] × [1, √limit]:
n ← 4x²+y²
if (n ≤ limit) ∧ (n mod 12 = 1 ∨ n mod 12 = 5):
is_prime(n) ← ¬is_prime(n)
n ← 3x²+y²
if (n ≤ limit) ∧ (n mod 12 = 7):
is_prime(n) ← ¬is_prime(n)
n ← 3x²-y²
if (x > y) ∧ (n ≤ limit) ∧ (n mod 12 = 11):
is_prime(n) ← ¬is_prime(n)

// eliminate composites by sieving
for n in [5, √limit]:
if is_prime(n):
// n is prime, omit multiples of its square; this is
// sufficient because composites which managed to get
// on the list cannot be square-free
is_prime(k) ← false, k ∈ {n², 2n², 3n², ..., limit}

print 2, 3
for n in [5, limit]:
if is_prime(n): print n

2007-07-30 03:06:31 · answer #4 · answered by aspx 4 · 1 0

yes and when n= 4

6n+ 1 = 25

n= 8

6n + 1 = 49

2007-07-30 02:39:40 · answer #5 · answered by JAMES C 2 · 0 0

John V :
I don't think that's true. 5 and 11 are examples of primes that don't follow your '6n+1' rule.

2007-07-30 02:37:36 · answer #6 · answered by Optimizer 3 · 2 0

You can use the contrapositive of Fermat's little theorem:
If 2^(n-1) <> 1(mod n) then n is composite.
With the aid of PARI, I found
that 2^(900720142) mod(900720143) = 469550677
so 900720143 is not prime.

2007-07-30 03:34:08 · answer #7 · answered by steiner1745 7 · 0 0

By algebra? Simple. Just show that group Z_900720143 is cyclic.

2007-07-30 04:22:49 · answer #8 · answered by Anonymous · 1 0

try dividing it by a ton of different numbers (by hand, so you don't break the no calculator rule) and then go from there

2007-07-30 02:32:16 · answer #9 · answered by Mariah 3 · 1 2

USE PRIME FACTORISTAION

2007-07-30 03:15:02 · answer #10 · answered by Anonymous · 0 1

fedest.com, questions and answers