Two days ago I recalled a problem I was given a long time ago. The problem is:
Four ants are placed on the vertices of a square with side 1. The ants start moving, each directed towards its left neighbour. What is length of each ant's path up to their meeting.
So obviously they will meet in the center of the square and each ant will have travelled the same path. I assumed that on each step each ant travels $1/n$ (in straight direction) of the distance to its neighbour. That way the path is $\frac{1}{n} + \frac{\sqrt{n^2-2n+2}}{n^2} + \frac{\sqrt{n^2-2n+2}^2}{n^3} + \dots = \sum_{i=1}^{\infty} {\frac{\sqrt{n^2-2n+2}^i}{n^i}=1}$ So I fanally each ant's path is of length equal 1.
That's ok but I do remember that when I was told the problem for first time somebody told me a quite logic solution not involving any convergence. Can anybody of you come up with that beatiful solution?