Package-level declarations

Types

Link copied to clipboard
value class BezoutCoefficientsWithGCD<T>(val first: T, val second: T, val gcd: T)

Container for Bézout coefficients and GCD.

Functions

Link copied to clipboard
fun binomial(n: Int, k: Int): Int
fun binomial(n: Long, k: Long): Long
fun binomial(n: UInt, k: UInt): UInt
fun binomial(n: ULong, k: ULong): ULong
Link copied to clipboard
fun <N> binomialPolynomial(n: N, k: Int): N
fun <N> binomialPolynomial(n: N, k: Long): N
fun <N> binomialPolynomial(n: N, k: UInt): N
fun <N> binomialPolynomial(n: N, k: ULong): N
Link copied to clipboard
fun <N> gcd(values: KoneIterable<N>): N
fun <N> gcd(vararg values: N): N
tailrec fun <N> gcd(a: N, b: N): N

fun gcd(values: KoneIterable<Int>): Int
fun gcd(values: KoneIterable<Long>): Long
fun gcd(vararg values: Int): Int
fun gcd(vararg values: Long): Long
tailrec fun gcd(a: Int, b: Int): Int
tailrec fun gcd(a: Long, b: Long): Long

Computes Greatest Common Divisor of a and b.

Link copied to clipboard

Test for not primality of this.

Link copied to clipboard

Trivial primality test by checking its divisibility by every integer between its square root and 2.

Link copied to clipboard
fun kroneckerSymbol(a: Int, b: Int): Int

Computes Kronecker symbol of entries a and b.

Link copied to clipboard
Link copied to clipboard