Story Details

  • Decomposing a Factorial into Large Factors

    Posted: 2025-03-28 14:55:54

    Terry Tao explores the problem of efficiently decomposing a large factorial n! into a product of factors of roughly equal size √n. He outlines several approaches, including a naive iterative method that repeatedly divides n! by the largest integer below √n, and a more sophisticated approach leveraging prime factorization. The prime factorization method cleverly groups primes into products close to the target size, offering significant computational advantages. While both methods achieve the desired decomposition, the prime factorization technique highlights the interplay between the smooth structure of factorials (captured by their prime decomposition) and the goal of obtaining uniformly large factors. Tao emphasizes the efficiency gains from working with the prime factorization, and suggests potential generalizations and connections to other mathematical concepts like smooth numbers and the Dickman function.

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

    Hacker News users discussed the surprising difficulty of factoring large factorials, even when not seeking prime factorization. One commenter highlighted the connection to cryptography, pointing out that if factoring factorials were easy, breaking RSA would be as well. Another questioned the practical applications of this type of factorization, while others appreciated the mathematical puzzle aspect. The discussion also touched upon the computational complexity of factoring and the effectiveness of different factoring algorithms in this specific context. Some commenters shared resources and further reading on related topics in number theory. The general sentiment was one of appreciation for the mathematical curiosity presented by Terry Tao's blog post.