This is something I noticed years ago playing with a calculator.
$\sqrt{2^2+(2/10)} = 2.04939015319192$
$\sqrt{3^2+(3/10)} = 3.0495901363953815$
$\sqrt{4^2+(4/10)} = 4.049691346263317$
...
$\sqrt{65^2+(65/100)} = 65.0049998077071$
...
$\sqrt{325^2+(325/1000)} = 325.0004999996154$
Or, encoded in a little python program
import math
for i in range(0,10000):
square = i ** 2
num = float("%s.%s" % (square, i))
print(math.sqrt(num))
First question is; how do you mathematically represent "round $x$ up to it's next biggest multiple of ten" so you could write a single equation for this?
Like a ceiling function, but for whole number values? Like $y = \sqrt{x^2 + \frac{x}{10\lceil x \rceil}}$? Or a function that "counts the digits" which you multiply by 10? $y = \sqrt{x^2 + \frac{x}{10*countdigits(x)}}$. Or another trick I'm missing?
Second question is, why is the decimal portion always staring with "0...049"!
Expanding $\sqrt{n^2+h}$ in Taylor series around $h=0$ gives $$ \sqrt{n^2+h}=n+\frac{h}{2n}-\frac{h^2}{8n^3}+O(h^3) $$ When $h=\dfrac{n}{10}$, we get $$ \sqrt{n^2+\frac{n}{10}} \approx n+\frac{1}{20}-\frac{1}{800n} $$ So, the fractional part is a bit less than $1/20=0.05$, and the bit is less than $1/800<0.001$ for $n\ge 2$. Therefore, the fractional part is $0.049\cdots$.
The same argument holds for larger $n$ with the proper power of $10$.