Answer:
A.Gravity acts to pull the object down
D.The object’s inertia carries it forward.
E.The path of the object is curved.
Explanation:
The motion of a projectile consists of two independent motions:
- A uniform motion along the horizontal direction, with constant horizontal speed
- A vertical motion with constant acceleration of g = 9.8 m/s^2 downward (acceleration due to gravity), due to the presence of the force of gravity, so the vertical velocity changes (increases in the downward direction)
As a result, the combined motion of the projectile has a curved trajectory (parabolic, more specifically). So the following options are correct:
A.Gravity acts to pull the object down --> gravity acts along the vertical direction
D.The object’s inertia carries it forward. --> there are no forces acting along the horizontal direction (if we neglect air resistance), so the horizontal motion continues with constant speed
E.The path of the object is curved
Answer:1/4 the brightness of star b
Explanation:
The answer is C)the rating that the golfers give Callaway clubs
Answer:
570 N
Explanation:
Draw a free body diagram on the rider. There are three forces: tension force 15° below the horizontal, drag force 30° above the horizontal, and weight downwards.
The rider is moving at constant speed, so acceleration is 0.
Sum of the forces in the x direction:
∑F = ma
F cos 30° - T cos 15° = 0
F = T cos 15° / cos 30°
Sum of the forces in the y direction:
∑F = ma
F sin 30° - W - T sin 15° = 0
W = F sin 30° - T sin 15°
Substituting:
W = (T cos 15° / cos 30°) sin 30° - T sin 15°
W = T cos 15° tan 30° - T sin 15°
W = T (cos 15° tan 30° - sin 15°)
Given T = 1900 N:
W = 1900 (cos 15° tan 30° - sin 15°)
W = 570 N
The rider weighs 570 N (which is about the same as 130 lb).
Answer:
#include <iostream>
#include <vector>
using namespace std;
int main() {
const int NUM_GUESSES = 3;
vector<int> userGuesses(NUM_GUESSES);
int i = 0;
int uGuess = 0;
for(i = 0; i <= userGuesses.size() - 1; i++){
cin >> uGuess;
userGuesses.at(i) = uGuess;
}
cout << endl;
return 0;
}
Explanation:
First inbuilt library were imported. Then inside the main( ) function, 3 was assigned to NUM_GUESSES meaning the user is to guess 3 numbers. Next, a vector was defined with a size of NUM_GUESSES.
Then a for-loop is use to receive user guess via cin and each guess is assigned to the vector.