"What is the smallest number *n* by which the given number *x* must be divided to make it into a perfect square?" 的奇怪答案

Weird answer to "What is the smallest number *n* by which the given number *x* must be divided to make it into a perfect square?"

我遇到了以下问题:给定数字 x 必须除以使其成为完全正方形的最小数字 n 是多少?

n = find_number ( x )

我知道找到 x 的质因数并乘以质因数的完美平方所必需的倍数的标准方法,但我看到了这个答案:

数字是 1/x 所以 x/1/x= x^2

不确定它是否完全错误,或者是一个天才和直接的解决方案

谢谢

不,那是不正确的...

对于 2 你说它的 1/2 然后 2 / (1/2) 是 4 这是完美的方形酷

但是 1/8 那么 2 /(1/8) 是 16 是完全平方

和 1/8 < 1/2 所以这是一个矛盾,你需要知道那是不正确的