factor: Factorize a number

factorizationR Documentation

Factorize a number

Description

Give all primes numbers to factor the number

Usage

factorize(n)

Arguments

n

Either integer, numeric or string value (String value: ither starting with 0x for hexadecimal, 0b for binary or without prefix for decimal values.) Or an element of class bigz.

Details

The factorization function uses the Pollard Rho algorithm.

Value

Vector of class bigz.

Author(s)

Antoine Lucas

References

The GNU MP Library, see https://gmplib.org

Examples

factorize(34455342)

gmp documentation built on July 9, 2023, 7 p.m.

Related to factor in gmp...