Answer:
t = 1.77 s
Explanation:
The equation of a traveling wave is
y = A sin [2π (x /λ -t /T)]
where A is the oscillation amplitude, λ the wavelength and T the period
the speed of the wave is constant and is given by
v = λ f
Where the frequency and period are related
f = 1 / T
we substitute
v = λ / T
let's develop the initial equation
y = A sin [(2π / λ) x - (2π / T) t +Ф]
where Ф is a phase constant given by the initial conditions
the equation given in the problem is
y = 5.26 sin (1.65 x - 4.64 t + 1.33)
if we compare the terms of the two equations
2π /λ = 1.65
λ = 2π / 1.65
λ = 3.81 m
2π / T = 4.64
T = 2π / 4.64
T = 1.35 s
we seek the speed of the wave
v = 3.81 / 1.35
v = 2.82 m / s
Since this speed is constant, we use the uniformly moving ratios
v = d / t
t = d / v
t = 5 / 2.82
t = 1.77 s
What do we know that might help here ?
-- Temperature of a gas is actually the average kinetic energy of its molecules.
-- When something moves faster, its kinetic energy increases.
Knowing just these little factoids, we realize that as a gas gets hotter, the average speed of its molecules increases.
That's exactly what Graph #1 shows.
How about the other graphs ?
-- Graph #3 says that as the temperature goes up, the molecules' speed DEcreases. That can't be right.
-- Graph #4 says that as the temperature goes up, the molecules' speed doesn't change at all. That can't be right.
-- Graph #2 says that after the gas reaches some temperature and you heat it hotter than that, the speed of the molecules starts going DOWN. That can't be right.
--
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.
Answer:
mars
Explanation:
the planet that is the odd is Mars
You multiply the high length and width and if your using centimeters then divide by 500 and then there's your answer.hoped this helped.