Question

The Green Monster, as shown below, is a wall 37 feet high in left field at Fenway Park in Boston. The wall is 310 feet from h
Fenway Park Baseball Trajectories in Green Monster Problem height above home plate [ft] 50 100 150 200 distance from home [ft
0 0
Add a comment Improve this question Transcribed image text
Answer #1

The matlab code is given below.

time = linspace(0,10);
speeds = [70,80,90,100,110];
x = zeros(100,5);
y = x;
xd = x;
yd = y;
ft2mtr = 0.3048;
mtr2ft = 1/ft2mtr;
mph2mps = 0.44704;
for i = 1:5
for j = 1:100
xd(j,i) = speeds(i)*mph2mps*0.707*time(j);
yd(j,i) = 4*ft2mtr + speeds(i)*mph2mps*0.707*time(j)-9.8*time(j)*time(j)/2;
end
end
x= xd*mtr2ft;
y = yd*mtr2ft;
plot(x(:,1),y(:,1))
hold on
plot(x(:,2),y(:,2))
hold on
plot(x(:,3),y(:,3))
hold on
plot(x(:,4),y(:,4))
hold on
plot(x(:,5),y(:,5))
xlim([0,310])
ylim([0,200])
yline(37)
legend('70','80','90','100','110')

The plot is given below.

50 100 150 200 250 300

Add a comment
Know the answer?
Add Answer to:
The Green Monster, as shown below, is a wall 37 feet high in left field at...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • 14. At Boston's Fenway Park, it is 310 feet (94.5 m) from home plate to the...

    14. At Boston's Fenway Park, it is 310 feet (94.5 m) from home plate to the left field wall The Green Monster which is 30 feet (9.2 m) high. If a batter hits a baseball at an initial height of 0.9 m and with an initial velocity of 26 m/s at an angle of 49° above the horizontal, does it clear the wall (go over), hit the wall, or fall short (never reach the wall)? Explain and support your answer...

  • a baseball is hit when it is 3ft above the ground It leaves the bat with...

    a baseball is hit when it is 3ft above the ground It leaves the bat with initial speed of 155 ft/sec A baseball is hit when it is 3 ft above the ground. It leaves the bat with initial speed of 155 ft/sec, making an angle of 16 questions with the horizontal. Assume there is linear drag with a drag coefficient k0.31. The acceleration due to gravity is g-32 ft/sec Answer the following ( sin a)1-k-) equations for linear drag,...

  • A baseball pitcher throws a ball at 92.0 mi/h in the horizontal direction

    7. A baseball pitcher throws a ball at 92.0 mi/h in the horizontal direction. How far does the ball fall vertically by the time it reaches home plate, which is a horizontal distance of 60.5 ft away? (Express your answer in units of feet. Neglect air resistance.) 8.A panther jumps to a height of 2.50 m when leaving the ground at an angle of 41.9º. What is its initial speed (in m/s) as it leaves the ground? 9.A bowling ball is launched from...

  • Instructions for PHY 2048 Problem Set (PSET): (1) Please NEATLY write your name and your solutions....

    Instructions for PHY 2048 Problem Set (PSET): (1) Please NEATLY write your name and your solutions. (2) You must use blank 8"x11" printer paper. (3) Begin each problem on a new page, and put your name on each page. Staple your pages together. 4) Only write on one side of the page. (5) You must write up your solutions independently (i.e. don't copy anyone else's solutions), using your own words and thought process. You must show all of your work....

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT