是否可以将numpy的linalg.matrix_power与模数一起使用,以使元素不会增大到某个值?
答案 0 :(得分:10)
为了防止溢出,如果您首先获取每个输入数字的模数,则可以使用相同结果的事实;事实上:
(M**k) mod p = ([M mod p]**k) mod p,
表示矩阵 M
。这来自以下两个基本身份,它们对整数x
和y
有效:
(x+y) mod p = ([x mod p]+[y mod p]) mod p # All additions can be done on numbers *modulo p*
(x*y) mod p = ([x mod p]*[y mod p]) mod p # All multiplications can be done on numbers *modulo p*
同样的同一性也适用于矩阵,因为矩阵加法和乘法可以通过标量加法和乘法来表示。有了这个,你只对小数进行取幂(n mod p通常远小于n),并且不太可能出现溢出。在NumPy中,你只需要做
((arr % p)**k) % p
以获得(arr**k) mod p
。
如果仍然不够(即,如果[n mod p]**k
存在小n mod p
导致溢出的风险,则可以将取幂分解为多个取幂。上述基本身份产生
(n**[a+b]) mod p = ([{n mod p}**a mod p] * [{n mod p}**b mod p]) mod p
和
(n**[a*b]) mod p = ([n mod p]**a mod p)**b mod p.
因此,您可以将k
或a+b+…
或其任意组合分解为a*b*…
。上面的标识允许您只使用小数字执行小数的取幂,这大大降低了整数溢出的风险。
答案 1 :(得分:4)
使用Numpy的实现:
https://github.com/numpy/numpy/blob/master/numpy/matrixlib/defmatrix.py#L98
我通过添加模数术语来改编它。 HOWEVER ,有一个错误,如果发生溢出,则不会引发OverflowError
或任何其他类型的异常。从那时起,解决方案将是错误的。有一个错误报告here。
这是代码。小心使用:
from numpy.core.numeric import concatenate, isscalar, binary_repr, identity, asanyarray, dot
from numpy.core.numerictypes import issubdtype
def matrix_power(M, n, mod_val):
# Implementation shadows numpy's matrix_power, but with modulo included
M = asanyarray(M)
if len(M.shape) != 2 or M.shape[0] != M.shape[1]:
raise ValueError("input must be a square array")
if not issubdtype(type(n), int):
raise TypeError("exponent must be an integer")
from numpy.linalg import inv
if n==0:
M = M.copy()
M[:] = identity(M.shape[0])
return M
elif n<0:
M = inv(M)
n *= -1
result = M % mod_val
if n <= 3:
for _ in range(n-1):
result = dot(result, M) % mod_val
return result
# binary decompositon to reduce the number of matrix
# multiplications for n > 3
beta = binary_repr(n)
Z, q, t = M, 0, len(beta)
while beta[t-q-1] == '0':
Z = dot(Z, Z) % mod_val
q += 1
result = Z
for k in range(q+1, t):
Z = dot(Z, Z) % mod_val
if beta[t-k-1] == '1':
result = dot(result, Z) % mod_val
return result % mod_val
答案 2 :(得分:1)
这种显而易见的方法出了什么问题?
E.g。
import numpy as np
x = np.arange(100).reshape(10,10)
y = np.linalg.matrix_power(x, 2) % 50
答案 3 :(得分:0)
所有以前的解决方案都存在溢出问题,因此我必须编写一种算法,以解决每次整数乘法之后的溢出问题。这是我的方法:
def matrix_power_mod(x, n, modulus):
x = np.asanyarray(x)
if len(x.shape) != 2:
raise ValueError("input must be a matrix")
if x.shape[0] != x.shape[1]:
raise ValueError("input must be a square matrix")
if not isinstance(n, int):
raise ValueError("power must be an integer")
if n < 0:
x = np.linalg.inv(x)
n = -n
if n == 0:
return np.identity(x.shape[0], dtype=x.dtype)
y = None
while n > 1:
if n % 2 == 1:
y = _matrix_mul_mod_opt(x, y, modulus=modulus)
x = _matrix_mul_mod(x, x, modulus=modulus)
n = n // 2
return _matrix_mul_mod_opt(x, y, modulus=modulus)
def matrix_mul_mod(a, b, modulus):
if len(a.shape) != 2:
raise ValueError("input a must be a matrix")
if len(b.shape) != 2:
raise ValueError("input b must be a matrix")
if a.shape[1] != a.shape[0]:
raise ValueError("input a and b must have compatible shape for multiplication")
return _matrix_mul_mod(a, b, modulus=modulus)
def _matrix_mul_mod_opt(a, b, modulus):
if b is None:
return a
return _matrix_mul_mod(a, b, modulus=modulus)
def _matrix_mul_mod(a, b, modulus):
r = np.zeros((a.shape[0], b.shape[1]), dtype=a.dtype)
bT = b.T
for rowindex in range(r.shape[0]):
x = (a[rowindex, :] * bT) % modulus
x = np.sum(x, 1) % modulus
r[rowindex, :] = x
return r