In some videos in numberphile on the Zeno's Paradox the teacher of the video tried to explain how this paradox worked using the hands to beat palamas (I'm not sure how to explain this but I'll leave the video there in question, please watch the video is easier to understand) .
Briefly in the video is shown that every time you clap you shorten half the distance as in the example below.
1/2 = 0.5
0.5 / 2 = 0.25
To return these divisions you can use the following code:
static void Main(string[] args)
{
int i = 0;
decimal x = 1m;
decimal dividir = x / 2m;
do
{
i++;
Console.WriteLine("{0}:{1}", i, dividir);
dividir = dividir / 2m;
} while (dividir != 0);
Console.ReadKey();
}
At the end, 93 results are returned.
Is that right?
Should not it have more results than that?