factor_n {m2r} | R Documentation |
Factor an integer into primes
Description
Factor an integer into primes
Usage
factor_n(n, code = FALSE, ...)
factor_n.(n, code = FALSE, ...)
Arguments
n |
an integer or a polynomial |
code |
return only the M2 code? (default: |
... |
... |
Value
a data frame with integer columns prime
and
power
or m2_pointer
referencing the factorization
in M2.
Examples
## Not run: requires Macaulay2
##### basic usage
########################################
2^2 * 3^7 * 5^2 # = 218700
factor_n(218700)
factor_n.(218700)
(df <- factor_n(218700))
df$prime
df$power
str(df)
factor_n(218700, code = TRUE)
##### other options
########################################
(integer_pointer <- m2.("218700"))
m2_name(integer_pointer)
factor_n(integer_pointer, code = TRUE)
factor_n(integer_pointer)
factor_n(3234432540)
factor_n(323443254223453)
factor_n(rpois(1, 1e4))
##### known issues
########################################
# R doesn't handle big ints well. note in the following
# the m2 code number is different than the supplied number
factor_n(32344325422364353453, code = TRUE)
# this can be circumvented by passing a string instead
factor_n("32344325422364353453", code = TRUE)
# but if the factors are large, R can't handle the parsing well
factor_n("32344325422364353453")
# here's a workaround:
factor_pointer <- factor_n.("32344325422364353453")
m2_meta(factor_pointer, "ext_str")
extract_factors <- function(pointer) {
require(stringr)
str <- m2_meta(pointer, "ext_str")
str <- str_sub(str, 19, -2)
str <- str_extract_all(str, "\\{[0-9]+,[0-9]+\\}")[[1]]
str <- str_sub(str, 2, -2)
str <- str_split(str, ",")
df <- as.data.frame(t(simplify2array(str)))
names(df) <- c("prime", "power")
df
}
(df <- extract_factors(factor_pointer))
# using gmp (currently broken)
# factor_n("32344325422364353453", gmp = TRUE)
m2("11 * 479 * 6138607975396537")
11 * 479 * 6138607975396537
## End(Not run)
[Package m2r version 1.0.2 Index]