Let's say I want to find the largest number that when squared doesn't exceed 9223372036854775807. Or any other large number like that. How can I go about finding that? Is there some kind of function that can be applied here?
2026-03-30 04:56:34.1774846594
How can I find the largest perfect square in a really big number.
2.8k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
For any $N \in \mathbb{N}$ the largest integer $n$ whose square is $n^2 \le N$ is $n = \lfloor \sqrt{N} \rfloor$.
For example $\lfloor \sqrt{9223372036854775807} \rfloor = 3037000499\;$.