为什么我们要检查素数的平方根来确定它是否是素数?

编程入门 行业动态 更新时间:2024-10-19 21:23:02
本文介绍了为什么我们要检查素数的平方根来确定它是否是素数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

要测试一个数是否为质数,为什么要测试它是否只能被这个数的平方根整除?

To test whether a number is prime or not, why do we have to test whether it is divisible only up to the square root of that number?

推荐答案

如果一个数 n 不是质数,它可以分解成两个因式 a 和 b:

If a number n is not a prime, it can be factored into two factors a and b:

n = a * b

现在a 和b 不能都大于n 的平方根,因为这样积a *b 将大于 sqrt(n) * sqrt(n) = n.所以在任何n的因式分解中,至少有一个因数必须小于n的平方根,如果我们找不到任何小于或等于的因数对于平方根,n 必须是素数.

Now a and b can't be both greater than the square root of n, since then the product a * b would be greater than sqrt(n) * sqrt(n) = n. So in any factorization of n, at least one of the factors must be smaller than the square root of n, and if we can't find any factors less than or equal to the square root, n must be a prime.

更多推荐

为什么我们要检查素数的平方根来确定它是否是素数?

本文发布于:2023-11-28 21:05:05,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1643946.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:素数   平方根

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!