You are asked find the range of the motion. The projectile stops moving horizontally when it hits the ground, y = 0. The vertical and horizontal components of the motion are related through time.
When dealing with vectors, it's important to note which direction is positive and which is negative. Naturally, I chose up as positive and right (the direction of horizontal motion of projectile) as positive.
y = y0 + v0yt + 1/2at^2
0 = 1/2at^2 + v0yt + y0 - y Rearrange
t = (-v0y - sqrt(voy^2-4(a/2)(y0-y)))/a Quadratic formula
We can discard the other root because physically it makes no sense.
Note: y0 = 15m y = 0m v0y = 20sin(30) m/s a = -g = -10
x = x0 + v0xt + 1/2at^2
x = v0xt Simplification
x = v0x((-v0y + sqrt(voy^2-4(a/2)(y0-y)))/a)
x = 20cos(30)((-20sin(30) - sqrt((20sin(30))^2-4(-5)(15)))/-10)
x = 51.96 m = 52 m
Note that I did not plug in values until the very end. Typically, it's a good method of solving physics problems, but for this problem, it may help to put numerical values in earlier (e.g. substitute 10 for 20sin(30)). The MCAT tends to have answers that work out well (like t = 3), so you won't get the rounding error often introduced when values are plugged in before the end.