作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我似乎无法弄清楚为什么我的 python 代码告诉我错误的 carmichael 数字。提前致谢。我只是看不出算法中的错误。
def isCarmichaelNumber( x ):
for y in range(2,x):
#check if prime
if math.gcd (x, y) == 1:
if pow(y, x-1, x) != 1:
return False
return True
print(isCarmichaelNumber(1847))
最佳答案
您不是在检查 x
是否为质数。根据定义,卡迈克尔数必须是合数。对于任何素数 x
,pow(y, x-1, x) == 1
对于 range(2, x)
,因此将错误地返回True
。 1847 是质数,这就是为什么您的函数声称它是卡迈克尔数。
一种修复方法:
def isCarmichaelNumber(x):
import math
isprime = True
for y in range(2,x):
if math.gcd(x, y) == 1:
if pow(y, x-1, x) != 1:
return False
else:
isprime = False
return not isprime
关于python - 寻找卡迈克尔数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53387324/
我是一名优秀的程序员,十分优秀!