Jump to content
BrainDen.com - Brain Teasers
  • 0


Guest
 Share

Question

A ball is dropped from a distance of 11m. :mellow:

Each time, it bounces back to a height which is half of the previous one. :lol:

What is the total distance travelled by the ball when it comes to rest. :o

Link to comment
Share on other sites

Recommended Posts

  • 0
33

I guess it's gotta be 33. Our equation is 11 + 2*11/2 + 2*11/4 + 2*11/8 ... etc which equals 11 + 2*Sum(11/2^n) for values of n from 1 to infinity.

That simplifies to 11 + 22*Sum(1/2^n). As n approaches infinity, Sum(1/2^n) approaches 1.

Therefore the distance is approximately 11 + 22*1 = 33.

Right. Got it.

So the ball falls, bounces and travels 33 metres before coming to rest.

Right?

Yes guys, you all got it. :D

I have written a small program in C to illustrate the situation (see attachment).

It is evident from the program that generally, if it is dropped from a distance of x meters, it would travel a distance of 3x.

The source code of the program is as follows:

#include<stdio.h>

#include<conio.h>

int main()

{

float i,j,sum;

printf("Ball is dropped from a distance of : ");

scanf("%f",&j);

sum=j;

while(j!=0)

{

sum=sum+2*(j/2);

j=j/2;

}

printf("\nApproximate total distance travelled = %0.0f",sum);

getch();

return 0;

}

Bouncing_Ball.zip

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...