Answer:
59.4 meters
Explanation:
The correct question statement is :
A floor polisher has a rotating disk that has a 15-cm radius. The disk rotates at a constant angular velocity of 1.4 rev/s and is covered with a soft material that does the polishing. An operator holds the polisher in one place for 4.5 s, in order to buff an especially scuff ed area of the floor. How far (in meters) does a spot on the outer edge of the disk move during this time?
Solution:
We know for a circle of radius r and θ angle by an arc of length S at the center,
S=rθ
This gives
θ=S/r
also we know angular velocity
ω=θ/t where t is time
or
θ=ωt
and we know
1 revolution =2π radians
From this we have
angular velocity ω = 1.4 revolutions per sec = 1.4×2π radians /sec = 1.4×3.14×2×= 8.8 radians / sec
Putting values of ω and time t in
θ=ωt
we have
θ= 8.8 rad / sec × 4.5 sec
θ= 396 radians
We are given radius r = 15 cm = 15 ×0.01 m=0.15 m (because 1 m= 100 cm and hence, 1 cm = 0.01 m)
put this value of θ and r in
S=rθ
we have
S= 396 radians ×0.15 m=59.4 m
Answer:
8. 2.75·10^-4 s^-1
9. No, too much of the carbon-14 would have decayed for radiation to be detected.
Explanation:
8. The half-life of 42 minutes is 2520 seconds, so you have ...
1/2 = e^(-λt) = e^(-(2520 s)λ)
ln(1/2) = -(2520 s)λ
-ln(1/2)/(2520 s) = λ ≈ 2.75×10^-4 s^-1
___
9. Reference material on carbon-14 dating suggests the method is not useful for time periods greater than about 50,000 years. The half-life of C-14 is about 5730 years, so at 65 million years, about ...
6.5·10^7/5.73·10^3 ≈ 11344
half-lives will have passed. Whatever carbon 14 may have existed at the time will have decayed completely to nothing after that many half-lives.
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:
shown below
Explanation:
2 x 10⁷ as a number is 20,000,000
20,000,000 - 10 = 19,999,990
It went 19,999,990 m/h
in km/h:
19,999,990 / 1000 = 19,999.99 km/h
in km/s
19,999,990 / 3,600,000 = ~5.56 km/s
in m/s
19,999,990 / 3600 = ~5555.56 m/s