I may be wrong, but I think you're trying to say that Planet-A is
<em>3 times as far from the sun</em> as Planet-C is.
If that's the real question, then the answer is that the period of Orbit-A
is about<em> 5.2</em> times as long as the period of Orbit-C .
Orbital period ≈ (proportional to) (the orbital distance) ^ 3/2 power.
This was empirically demonstrated about 350 years ago by Johannes
and his brilliant Kepple, and derived about 100 years later by Newton
from his formula for the forces of gravity.
Each successive graph is at a later time. You can see from these graphs how the amplitude of the total electric field changes, but the positions of the crests and troughs (called antinodes) and places of zero field (called nodes) never change.!!!!!!!!!!!!!!!!!
Explanation:
Check out the picture I drew for a minute before reading this...
B. Distance [the red line] is a scalar quantity reflecting how far an object has traveled. Displacement [the green line] is a vector quantity reflecting how far an object has moved from a point. The key difference is that distance can be any sort of path while displacement is always a vector (or a straight line) between a starting point and a finishing point. Sometimes distance and displacement are equal to one another. Sometimes you have a distance traveled, but zero displacement overall; which is what's going on in your question.
A. The distance that the racecar traveled is indeed 500m. But at the end of the lap, it is right back where it started. So overall, it has been displaced 0m.
Answer:
Heyyy hope this helps
Convection currents describe the rising, spread, and sinking of gas, liquid, or molten material caused by the application of heat.
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.