a ball is given a velocity of 3.89 m/s at an angle of 32 degrees. Calculate the maximum height and the range of the ball after 5.0s.

Kinematics time:

First you need to realize that x and y act independently of each other. If you drop a ball straight downwards, it's not going to suddenly accelerate in the x direction.

Next draw a free body diagram. The only force that is theoretically acting on it is gravity.

Acceleration caused by gravity is equal to 9.8 m/s^2.

Now write kinematic equations:

X=Xo+VoT*1/2at^2

Xo (initial position) is 0, so ignore it in this case. This is because the ball is launched and lands on the same elevation.

Vo is 3.89m/s, but you need to divide it into its x and y components, so you'll actually get a Vox and a Voy.

Acceleration is -9.8m/s^2 since gravity acts in a downward motion. This is only in the y direction, so the ball won't experience any acceleration in the x direction.

Time links both equations together since the ball can't be in two places at the same time.

It's relatively easy to calculate the range (I assume the change in x distance) right now using the kinematic equation. Since there's no acceleration in the x direction, we assume it's 0, therefore you get the equation

Xx(t) = Vox*t

Vox is initial velocity in the x direction, which we can find by using the cos function. 3.89*cos(32) will return Vox. Multiple Vox by 5s and you get the range of the ball after 5 seconds.

As for maximum height, we use a different equation.

Velocity final = velocity initial + acceleration* time.

At the maximum height, the ball has a velocity of 0m/s, therefore we set Vfinal to 0.
Voy can be found using the same method for Vox, except use the sine function.

Voy = 3.89*sin(32).

Gravity is -9.8 m/s^2 in the y direction. Now we plug and chug to solve for the time after the ball is launched when it reaches the maximum height.

From there we plug in the time that we just solved for into the y kinematic equation.

Xy = Xoy + Voy*t + 1/2 at^2

All variables are known and we solve for Xy which is the height at a given time (in this case the time of max height).

Sorry my writing is sort of scattered

To calculate the maximum height and range of the ball, we can use the equations of projectile motion and divide the problem into two parts: the vertical motion and the horizontal motion.

1. Vertical Motion:
To calculate the maximum height, we need to find the time it takes for the ball to reach its highest point. We can use the vertical component of the initial velocity to find this.

Let's break down the given initial velocity into its vertical and horizontal components using trigonometric functions:
Vertical Component (V_y) = V_initial * sin(angle)
V_y = 3.89 m/s * sin(32°)
V_y ≈ 2.02 m/s

Now we can use the equation for the time of flight (total time in the air) of a projectile:
Time of Flight (T) = 2 * V_y / g
T = 2 * 2.02 m/s / 9.8 m/s²
T ≈ 0.41 s

Since the maximum height is achieved halfway through the total time of flight, we can calculate it using the formula:
Maximum Height (H) = V_y^2 / (2 * g)
H = (2.02 m/s)^2 / (2 * 9.8 m/s²)
H ≈ 0.21 m

2. Horizontal Motion:
To calculate the range of the ball (how far it travels horizontally), we need to find the horizontal component of the initial velocity and multiply it by the time of flight.

Horizontal Component (V_x) = V_initial * cos(angle)
V_x = 3.89 m/s * cos(32°)
V_x ≈ 3.29 m/s

Range (R) = V_x * T
R = 3.29 m/s * 0.41 s
R ≈ 1.35 m

After 5.0 seconds, the ball would have hit the ground, so the maximum height and range are both zero.