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.
