在Python中计算有限字段的简单方法是GF(p),然后对此字段:((1 + 2)/(3 + 4 * 1))

时间:2019-03-31 22:22:13

标签: python python-2.7 math

执行此工作的任何库,不一定是独立代码,但例如:

#the field is:

def finite_field(params):
 #GF(p)
 #code here where p is a prime, say p = 11

a = 8
b = 2
c = 3

print finite_field(a - b / c)

提前谢谢!

0 个答案:

没有答案