Story Details

  • Lehmer's Continued Fraction Factorization Algorithm

    Posted: 2025-03-30 14:15:15

    Lehmer's continued fraction factorization algorithm offers a way to find factors of a composite integer n. It leverages the convergents of the continued fraction expansion of √n to generate pairs of integers x and y such that x² ≡ y² (mod n). If x is not congruent to ±y (mod n), then gcd(x-y, n) and gcd(x+y, n) will yield non-trivial factors of n. While not as efficient as more advanced methods like the general number field sieve, it provides a relatively simple approach to factorization and serves as a stepping stone towards understanding more complex techniques.

    Summary of Comments ( 3 )
    https://news.ycombinator.com/item?id=43524385

    Hacker News users discuss Lehmer's algorithm, mostly focusing on its impracticality despite its mathematical elegance. Several commenters point out the exponential complexity, making it slower than trial division for realistically sized numbers. The discussion touches upon the algorithm's reliance on finding small quadratic residues, a process that becomes computationally expensive quickly. Some express interest in its historical significance and connection to other factoring methods, while others question the article's claim of it being "simple" given its actual complexity. A few users note the lack of practical applications, emphasizing its theoretical nature. The overall sentiment leans towards appreciation of the mathematical beauty of the algorithm but acknowledges its limited real-world use.