Does Distance Affect the Outcome in the Monkey and Zookeeper Problem?

  • Thread starter kghosh
  • Start date
In summary, the zookeeper should aim at the monkey when shooting. If the monkey and zookeeper are farther apart from each other, the distance fallen will increase, but the bullet will still hit the monkey.
  • #1
kghosh
4
0
This may be a stupid question. In Hewitt physics book there is a problem where a zookeeper on the ground is trying to shoot a monkey on top of a tree. If the monkey drops at the same time as the zookeeper shoots, where should the zookeeper aim, above the monkey, at the monkey or below the monkey? The answer is "at the monkey" because the bullet will fall through the same amount as the monkey in the same amount of time.

My question is does the distance between the zookeeper and the tree where the monkey is have no effect at all?
 
Physics news on Phys.org
  • #2
Look at it this way, it might be easier to visualize.

The zookeeper is on a cliff, at the same height as the monkey on the tree - ie the zookeeper and monkey are at the same level.
The zookeeper shoots and the monkey drops at the same time.
The bullet and monket fall the same distance in the same anount of time.

If the cliff and monkey in a tree ares farther apart from each other, the distance fallen will increase, but the bullet will still hit the monkey.

With no air resistance the time for a hit is the time it takes the bullet to travel the distance of the cliff to the tree.

With air resistance the time will increase ( the bullet is slowing down in the horizontal direction )( neglect vertical air resistance for the monkey and bullet ) . The cliff and tree would have to be somewhat higher up from the ground.
 
  • #3
kghosh said:
This may be a stupid question. In Hewitt physics book there is a problem where a zookeeper on the ground is trying to shoot a monkey on top of a tree. If the monkey drops at the same time as the zookeeper shoots, where should the zookeeper aim, above the monkey, at the monkey or below the monkey? The answer is "at the monkey" because the bullet will fall through the same amount as the monkey in the same amount of time.

My question is does the distance between the zookeeper and the tree where the monkey is have no effect at all?

When the zookeeper is on the ground, at a lower level than the monkey, I do not believe aiming at the monkey is the right approach.

If the zookeeper is level with the monkey (on the cliff that 256 used in his example), then firing horizontally is correct since the bullet drops vertically at the same rate as the monkey.

But when the zookeeper is below the monkey, if he aimed up at the monkey, the bullet will have a positive vertical velocity at first, until it reaches the top of its parabolic arc. That means that the bullet is rising as the monkey is falling at first, which means that the bullet will pass above the falling monkey.

Are you sure you have stated the textbook problem correctly? Can you scan a copy of the problem and attach it here?
 
  • #4
berkeman said:
When the zookeeper is on the ground, at a lower level than the monkey, I do not believe aiming at the monkey is the right approach.

If the zookeeper is level with the monkey (on the cliff that 256 used in his example), then firing horizontally is correct since the bullet drops vertically at the same rate as the monkey.

But when the zookeeper is below the monkey, if he aimed up at the monkey, the bullet will have a positive vertical velocity at first, until it reaches the top of its parabolic arc. That means that the bullet is rising as the monkey is falling at first, which means that the bullet will pass above the falling monkey.

Are you sure you have stated the textbook problem correctly? Can you scan a copy of the problem and attach it here?

But how about ?
 
Last edited by a moderator:
  • #5
In fact, if you write the two equations for the height of the bullet as a function of time, and the height of the monkey as a function of time, aiming at the monkey only works for one special case of tree height and distance to the tree (for a particular bullet velocity), I believe...
 
  • #6
atyy said:
But how about ?


Hmm. Weird. It looks like they are aiming below the initial monkey position, but they say they are aiming at it.

Wonder where my thinking is wrong.

Yb(t) = 0 + Vy(0) - 1/2 g t^2

Ym(t) = H - 1/2 g t^2

So for Yb(t) = Ym(t), you need Vb(0) in the vertical direction multiplied by the flight time to equal H. Guess I need to play with this some more...
 
Last edited by a moderator:
  • #7
Hah, I'll be danged!

H = Vy(0) * t = Vy(0) * L/Vx(0) = L * Vy(0)/Vx(0) = L * tan(theta) = H

Poor monkey!


EDIT: Fixed sin --> tan in equation above and in quote of it below.
 
Last edited:
  • #10
Thanks for all the answers. I get that the shot has to come from the same height (found a similar problem in Giancoli and that one states specifically the shot is coming from the same level).

But I am still a little perplexed (even after seeing the MIT demonstration) and I still have a question.

The range a projectile will travel depends on the initial horizontal velocity. So, to me it looks like if the horizontal velocity is too small (or the distance between the tree and the zookeeper is too great) the bullet might fall to the ground before it covers the range. It will fall to the ground at the same rate as the monkey and at the same time as the monkey but the distance between the two will still matter.

Could you guys please clarify this? Thanks.
 
  • #11
kghosh said:
Thanks for all the answers. I get that the shot has to come from the same height (found a similar problem in Giancoli and that one states specifically the shot is coming from the same level).

But I am still a little perplexed (even after seeing the MIT demonstration) and I still have a question.

The range a projectile will travel depends on the initial horizontal velocity. So, to me it looks like if the horizontal velocity is too small (or the distance between the tree and the zookeeper is too great) the bullet might fall to the ground before it covers the range. It will fall to the ground at the same rate as the monkey and at the same time as the monkey but the distance between the two will still matter.

Could you guys please clarify this? Thanks.

Yes, if the range is long enough that the bullet hits the ground short of the tree, the monkey will obviously not be hit by the bullet.
 

Related to Does Distance Affect the Outcome in the Monkey and Zookeeper Problem?

What is the Monkey & Zookeeper problem?

The Monkey & Zookeeper problem is a classic computer science problem that involves a monkey trying to reach a bunch of bananas hanging from the ceiling of a cage. The goal of the monkey is to figure out how to reach the bananas without breaking the rules set by the zookeeper.

What are the rules set by the zookeeper in the Monkey & Zookeeper problem?

The rules set by the zookeeper in the Monkey & Zookeeper problem are as follows:

  • The monkey can only reach the bananas by climbing a ladder.
  • The monkey can only climb the ladder when it is on the ground.
  • The monkey can only hold one banana at a time.
  • The monkey cannot throw bananas.
  • The monkey cannot climb on top of the ladder while holding a banana.

What is the significance of the Monkey & Zookeeper problem?

The Monkey & Zookeeper problem is significant because it is a classic example of a concurrency problem, which is a common issue in computer science where multiple processes are competing for shared resources. It also demonstrates the importance of synchronization and proper communication between processes.

What are the possible solutions to the Monkey & Zookeeper problem?

There are several possible solutions to the Monkey & Zookeeper problem, including using semaphores, mutex locks, or monitors to control access to the ladder and bananas. Another solution is to use message passing to ensure proper communication between the monkey and the zookeeper.

How does the Monkey & Zookeeper problem relate to real-world situations?

The Monkey & Zookeeper problem can be applied to real-world situations where multiple processes or individuals need to access shared resources. For example, it can be used to model traffic flow on a busy highway or the operation of a bank with multiple customers accessing the same ATM machine.

Similar threads

  • Introductory Physics Homework Help
Replies
18
Views
4K
  • Introductory Physics Homework Help
Replies
12
Views
4K
  • Introductory Physics Homework Help
Replies
7
Views
4K
  • Introductory Physics Homework Help
Replies
8
Views
3K
  • Introductory Physics Homework Help
Replies
4
Views
4K
  • Introductory Physics Homework Help
Replies
5
Views
8K
  • Introductory Physics Homework Help
Replies
4
Views
3K
Replies
2
Views
1K
  • Introductory Physics Homework Help
Replies
2
Views
2K
  • Introductory Physics Homework Help
Replies
2
Views
1K
Back
Top