james made a very nice play on 13 hole on 2011 master's open. he made driver shot with initial velocity 200 m/s. the ball has a mass of 46g. its lunching angle is 28 degrees from the ground. draw the trajectory (x-y graph) with and without air resistance. the air resistance is measured as F air=.01v^2 N.

To draw the trajectory of the golf ball both with and without air resistance, we first need to understand the basic principles of projectile motion.

1. Without Air Resistance:
When there is no air resistance, the ball's trajectory follows a simple parabolic path. The key parameters we need for this calculation are the initial velocity (V₀), the launch angle (θ), and the acceleration due to gravity (g).

To find the initial horizontal velocity (V₀x) and vertical velocity (V₀y), we use the following equations:

V₀x = V₀ * cos(θ)
V₀y = V₀ * sin(θ)

The time of flight (T) can be determined by finding the time it takes for the ball to reach the highest point of its trajectory. This can be calculated using the equation:

T = 2 * V₀y / g

The distance covered along the x-axis can be calculated using:

R = V₀x * T

Now we have all the information needed to plot the trajectory on an x-y graph. We can divide the time into small intervals and calculate the position of the ball at each time interval using these equations:

x = V₀x * t
y = V₀y * t - 0.5 * g * t²

Plotting these x and y values for each time interval will give us the trajectory without air resistance.

2. With Air Resistance:
Taking air resistance into account requires considering the force of air resistance acting on the ball. In this case, it's given by the equation:

F_air = 0.01 * v²

To include air resistance in our calculations, we need to modify the equations of motion. Instead of directly considering x and y coordinates, we'll use time (t) as a parameter and calculate the x and y components of the velocity and position at each time step.

We start by calculating the acceleration of the ball using:

a_x = -F_air * cos(θ) / m
a_y = -g - F_air * sin(θ) / m

Using numerical methods like Euler's method or the Runge-Kutta method, we can calculate the position and velocity at each time interval, taking into account the acceleration and air resistance.

Plotting the x and y values obtained from these calculations will give us the trajectory with air resistance.

Note: Since the specific values for mass, launch angle, and other parameters were not provided in the question, I've assumed generic values to illustrate the process.