21x^21
5842587018385982521381124421
Take the square root of 21^21, store in n, and list it:
]n=.%:21x^21
7.64368e13
Is n an integer?
(=>.) n
1
Integer test says so.
Square n to get back to 21x^21:
x: n^2
5842587018385982340114415616
However,
21x^21 is
5842587018385982521381124421
Compare the two numbers:
5842587018385982340114415616
5842587018385982521381124421
Not the same.
21x^21 is not a square, even though the integer test (=>.) says so.
What went wrong? How can one test for large square numbers?
Skip