Ask Your Question
2

Find factors of large integers without fully factoring

asked 2018-12-12 09:32:17 +0200

polistirolo gravatar image

updated 2019-01-09 11:28:29 +0200

slelievre gravatar image

I have to find the smallest factor of a big number with SAGE. The problem with the factor command is that it displays the results only when the number is fully factored and so for a big number it could take an eternity to have the result. Has somebody a good program for finding factors of a big number without waiting for a full factorization?

edit retag flag offensive close merge delete

Comments

slelievre gravatar imageslelievre ( 2018-12-12 12:25:04 +0200 )edit

2 Answers

Sort by ยป oldest newest most voted
1

answered 2018-12-12 12:20:38 +0200

slelievre gravatar image

There is a command for exactly that in Sage, it is called trial_division.

It will find the smallest factor of a number, optionally limited to some bound.

For example,

sage: a = 207411784165069788403685789342707568622276103

Find the smallest factor:

sage: trial_division(a)
19

Find the smallest factor if it at most some bound, otherwise return the unfactored number:

sage: trial_division(a, bound=19)
19
sage: trial_division(a, bound=18)
207411784165069788403685789342707568622276103

One could use that function repeatedly to "factor as you go" until the user interrupts the factoring attempt.

For that, one way would be to define the following functions:

def inshort(m, l=5):
    numbertype = "primelike" if m.is_prime(proof=False) else "composite"
    return ("({:" + "{}".format(l) + "}-digit " +
            "{})").format(m.ndigits(), numbertype)

@cached_function
def trial_div(a, b):
    d = a.trial_division(start=b)
    k = a.valuation(d)
    return (d, k)

def trial_factor(n, start=None):
    print("\nTrying primelike factorisation of\n# = {}\n".format(n))
    if n == 1:
        print("# = 1 has no prime factors")
    m = Integer(n)
    d = Integer(1 if start is None else start)
    factors = []
    l = m.ndigits().ndigits()
    format_exponent = lambda k: '^{}'.format(k) if k > 1 else ''
    format_factor = lambda d, k: '{}{}'.format(d, format_exponent(k))
    sfirst = " * found new prime divisor: "
    snext = " * (prime divisors above) * "
    print("# = {}".format(inshort(m, l=l)))
    try:
        while m != 1:
            d, k = trial_div(m, d + 1)
            m = m // d^k
            if m > 1:
                a = inshort(m, l=l)
                b = (snext if factors else sfirst) + format_factor(d, k)
                print("# = {}{}".format(a, b))
            factors.append((d, k))
            if m == 1:
                print('\nComplete factorisation:\n# = ' +
                      ' * '.join(format_factor(*f) for f in factors))
                return(factors)
    except KeyboardInterrupt:
        print('\nFactoring interrupted. So far, obtained:\n# = ' +
              ' * '.join(format_factor(*f) for f in factors) +
              ' * {}'.format(inshort(m, l=l)))
        return factors + [(m, 1)]

Sometimes we get something that is probably a prime factorisation:

sage: a = 207411784165069788403685789342707568622276103
sage: f = trial_factor(a)

Trying primelike factorisation of
# = 207411784165069788403685789342707568622276103

# = (45-digit composite)
# = (44-digit composite) * found new prime divisor: 19
# = (42-digit composite) * (prime divisors above) * 29
# = (41-digit composite) * (prime divisors above) * 37
# = (38-digit composite) * (prime divisors above) * 929
# = (32-digit primelike) * (prime divisors above) * 518717
^C
Factoring interrupted. So far, obtained:
# = 19 * 29 * 37 * 929 * 518717 * (32-digit primelike)
where the final (32-digit primelike) is
21112220300468085766530282304433
sage: f
[(19, 1),
 (29, 1),
 (37, 1),
 (929, 1),
 (518717, 1),
 (21112220300468085766530282304433, 1)]

Sometimes the remaining factor is still known to be composite.

sage: a
872277058918929207644191411339288743538056112242
sage: f = trial_factor(a)

Trying primelike factorisation of
# = 872277058918929207644191411339288743538056112242

# = (48-digit composite)
# = (48-digit composite) * found new prime divisor: 2
# = (48-digit composite) * (prime divisors above) * 3
^C
Factoring interrupted. So far, obtained:
# = 2 * 3 * (48-digit composite)
where the final (48-digit composite) is
145379509819821534607365235223214790589676018707
sage: f
[(2, 1), (3, 1), (145379509819821534607365235223214790589676018707, 1)]
edit flag offensive delete link more
1

answered 2018-12-12 09:56:39 +0200

tmonteil gravatar image

updated 2018-12-12 10:01:33 +0200

If your integer is really big, not a prime number, and does not have too small factors, then you should have a look at the qsievefunction, see or example https://doc.sagemath.org/html/en/them...

In particular, you can look at the block=False option:

sage: q=qsieve(n, block=False)
sage: q
sage: q
sage: q
sage: q.quit()
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2018-12-12 09:32:17 +0200

Seen: 2,604 times

Last updated: Jan 09 '19