Is Prime Factorization Linear or Exponential?

In summary, factorization is a crucial component of encryption and is computationally difficult. The algorithm for factoring numbers is linear, but becomes exponentially more difficult with larger numbers. The computational time for division depends on the size of the inputs and scales with O(log(n)). Other arithmetic operations also have their own computational complexities.
  • #1
tiredryan
51
0
I'm confused about how difficult is it to factor numbers. I am reading that it is used in encryption and it is computationally difficult, but it seems to take O(n) from how I see it.

For example to factor 6, I would
(1) divide by 2 and check if the remainder is 0
(2) divide by 3 and check if the remainder is 0
(3) divide by 4 and check if the remainder is 0
(4) divide by 5 and check if the remainder is 0

For something larger like 30, I would
(1) divide by 2 and check if the remainder is 0
(2) divide by 3 and check if the remainder is 0
...
(28) divide by 29 and check if the remainder is 0

For n, I would
(1) divide by 2 and check if the remainder is 0
(2) divide by 3 and check if the remainder is 0
...
(n-2) divide by 29 and check if the remainder is 0

An algorithm to find the factors seems to be linear.

Is there something that I am missing?

Thanks.

-Ryan
 
Mathematics news on Phys.org
  • #2
You're right, it's a linear algorithm in that sense.
And as a shortcut you only need to check up to sqrt(N).

For example, for N=13:
N / 2, remainder = 1
N / 3, remainder = 1
N / 4 - don't bother checking. 4 is greater than sqrt(13).
We're now done. It's prime. If there were a factor 4 or bigger, then there would already have been a factor 13/4 = 3.25 or smaller that would have been encountered.

But what if you have gigantic numbers with 100 or more digits? How long do you think a computer takes to do 100,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000 operations? It's unimaginably longer than the age of the universe.

Usually people consider how long the algorithm takes in terms of D=log(N), roughly the number of digits. In that sense, your algorithm takes exponential time exp(D), which means it quickly becomes useless. My trick of using sqrt() yields exp(D/2), which is better, but still wholly useless for cracking numbers that a child can jot down in seconds.
 
Last edited:
  • #3
So if I understand it correctly, dividing x by y computationally will take around around log(x) time.

For example,
if it takes ~1 millisecond to divide 7 by 4,
it will take ~2 millisecond to divide 73 by 4
it will take ~4 millisecond to divide 7334 by 4
it will take ~8 millisecond to divide 73344234 by 4

Is this right?
 
  • #4
Factorization means using recursion (or maybe there's a faster way? idk) to decompose the given number into prime factors, i.e. with their powers. Since you'd have to keep track of how many times it can be divided by each prime factor, I'd say it'd take longer than O(n).

What you're doing is simply checking to see what prime factors it has, which is linear.
 
  • #5
I was reading about RSA cryptography.

http://en.wikipedia.org/wiki/RSA#Key_generation

In the cryptography I start with two large prime numbers p and q. This p times q yields a large composite number n. I keep p and q secret and share n to the world. It is hard for the public to back calculate p and q. So I am wondering about algorithms where I start with a known larger number that is composed of only unknown two prime factors.

I am a little confused now. You say that "What you're doing is simply checking to see what prime factors it has, which is linear." This is what I thought in the first post assuming that the computational time of dividing is independent of the size of the inputs. I am wondering if my third post has a more valid assumption and computational division time is dependent on the size of my input.
 
Last edited:
  • #6
I'm confused now. You say that "What you're doing is simply checking to see what prime factors it has, which is linear."
It's very simple. You were looking specifically at factorizing a semi-prime (product of two primes) while MacNCheese thought you where referring to prime factorization in general.
 
  • #7
Does division take log(x) time?
For example,
if it takes ~1 millisecond to divide 7 by 4,
it will take ~2 millisecond to divide 73 by 4
it will take ~4 millisecond to divide 7334 by 4
it will take ~8 millisecond to divide 73344234 by 4

Or is it relatively constant ?
For example,
if it takes ~1 millisecond to divide 7 by 4,
it will take ~1 millisecond to divide 73 by 4
it will take ~1 millisecond to divide 7334 by 4
it will take ~1 millisecond to divide 73344234 by 4

Or does it scale with with different with a different speed?

I think that is my confusion. Also does other arithmetic operations (addition, subtraction, division) scale at a same or different speed?
 

What is Prime Factorization Speed?

Prime Factorization Speed is the rate at which a computer or algorithm can find the prime factors of a given number.

Why is Prime Factorization Speed important?

Prime Factorization Speed is important in various fields of study, such as cryptography, number theory, and computer science. It is also used in solving mathematical problems and in encryption algorithms.

What factors affect Prime Factorization Speed?

The main factors that affect Prime Factorization Speed are the size of the number being factored, the efficiency of the algorithm used, and the processing power of the computer or device running the algorithm.

How is Prime Factorization Speed measured?

Prime Factorization Speed is typically measured in terms of the number of prime factors that can be found in a given amount of time, such as seconds or milliseconds.

What are some techniques used to improve Prime Factorization Speed?

There are various techniques used to improve Prime Factorization Speed, such as using more efficient algorithms, parallel processing, and pre-computing and storing prime numbers. Additionally, advancements in technology, such as faster processors and more memory, can also contribute to faster prime factorization speeds.

Similar threads

Replies
5
Views
2K
Replies
11
Views
492
Replies
4
Views
1K
  • General Math
Replies
3
Views
838
Replies
4
Views
927
  • General Math
Replies
5
Views
1K
  • General Math
Replies
8
Views
2K
Replies
6
Views
2K
  • General Math
Replies
3
Views
554
  • Precalculus Mathematics Homework Help
Replies
4
Views
841
Back
Top