frac_lcm: Least common multiple and greatest common divisor

View source: R/frac_lcm.R

frac_lcmR Documentation

Least common multiple and greatest common divisor

Description

Least common multiple and greatest common divisor

Usage

frac_lcm(..., max = 1e+07)

frac_gcd(...)

Arguments

...

Integer vectors or vectors that can be coerced to integer.

max

If the least common multiple is greater than max, max is returned instead.

Value

An integer.

Examples

frac_lcm(1, 2, 3, 4, 5, 6)
x <- 1:6
frac_lcm(x)
frac_lcm(x, 7)

frac_gcd(12, 42, 60)
y <- c(12, 42, 60)
frac_gcd(y)
frac_gcd(y, 39)

fracture documentation built on May 21, 2022, 9:05 a.m.