Skip to content
Surf Wiki
Save to docs
technology/algorithms

From Surf Wiki (app.surf) — the open knowledge base

Factor base

Small set of prime numbers used in sieving algorithms


Small set of prime numbers used in sieving algorithms

In computational number theory, a factor base is a small set of prime numbers commonly used as a mathematical tool in algorithms involving extensive sieving for potential factors of a given integer.

Usage in factoring algorithms

A factor base is a relatively small set of distinct prime numbers P, sometimes together with −1. Suppose we want to factorize an integer n. We generate, in some way, a large number of integer pairs (x, y) for which x \neq \pm y, x^2 \equiv y^2 \pmod{n}, and x^2 \pmod{n} \text{ and }y^2 \pmod{n} can be completely factorized over the chosen factor base—that is, all their prime factors are in P.

In practice, several integers x are found such that x^2 \pmod{n} has all of its prime factors in the pre-chosen factor base. We represent each x^2 \pmod{n} expression as a vector of a matrix with integer entries being the exponents of factors in the factor base. Linear combinations of the rows corresponds to multiplication of these expressions. A linear dependence relation mod 2 among the rows leads to a desired congruence x^2 \equiv y^2 \pmod{n}. This essentially reformulates the problem into a system of linear equations, which can be solved using numerous methods such as Gaussian elimination; in practice advanced methods like the block Lanczos algorithm are used, that take advantage of certain properties of the system.

This congruence may generate the trivial \textstyle n = 1 \cdot n; in this case we try to find another suitable congruence. If repeated attempts to factor fail we can try again using a different factor base.

Algorithms

Factor bases are used in, for example, Dixon's factorization, the quadratic sieve, and the number field sieve. The difference between these algorithms is essentially the methods used to generate (x, y) candidates. Factor bases are also used in the Index calculus algorithm for computing discrete logarithms.

References

References

  1. Koblitz, Neal. (1987). "A Course in Number Theory and Cryptography". Springer-Verlag.
  2. (2006). "Introduction to Cryptography with Coding Theory". Prentice-Hall.
  3. Stinson, Douglas R.. (1995). "Cryptography / Theory and Practice". CRC Press.
Info: Wikipedia Source

This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.

Want to explore this topic further?

Ask Mako anything about Factor base — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.

Report