I was playing around with python and I observed this:
for i in range(0, 100):
if i > 0:
print((i ** 0.5) - ((i -1) ** 0.5))
1.0
0.41421356237309515
0.31783724519578205
0.2679491924311228
0.2360679774997898
0.21342176528338808
0.19626156828141283
0.18267581368159957
0.1715728752538097
...
0.1162582564213892
0.11323701145890563
0.0519877143675167
0.05170895383970375
0.051434629976304436
0.05116462632374841
0.0508988306633924
0.050637134815561424
0.05037943445453408
Why does this happen?
Vaguely remembering from calculus, this might be the derivative of an iterative function?
Caveat: I'm not substantially proficient in math, so if this common place knowledge, then I apologize in advance for asking such question!
Thank you.
The number $\sqrt n$ is the size a square has to be so that its area is $n$. The difference $\sqrt{n+1}-\sqrt n$ is by how much you need to increase the sides so that the area increases by $1$.
Lengthening the sides by some fixed value $x$ will result in a larger increase in area as the sides get bigger. Hence the required lengthening to increase the area by $1$ is less and less as the sides get bigger.
An increase by L impacts the area in a way that depends on how big the area already is: