Answer:
%Open the file.
fID = fopen('parts_inv.dat');
%Read from the file.
data = fscanf(fID,'%d\t%f\t%d',[3,inf]);
%Close
fclose(fID);
%Restore the data.
data = data';
%Get the size
[rs, cs] = size(data);
%Set value.
invCost = 0;
%Loop
for rw = 1 : rs
%Find cost
invCost = invCost + (data(rw, 2) * data(rw, 3));
%Loop end
end
%Display the cost.
fprintf('Total cost: %4.2f\n\n', invCost);
Explanation:
Answer:
0.366×10^{-3} / s
Explanation:
θ = θmax e^{-bt/2m}
Given that
θ = 5.50°
θmax = 15.0°
So that we have
ln (θ / θmax) = -bt /2m
= - ln(5.50°/ 15.0°) / 1000s = b /2m
= b / 2m = 0.366×10^{-3} / s
The De Broglie's wavelength of a particle is given by:

where
is the Planck constant
p is the momentum of the particle
In this problem, the momentum of the electron is equal to the product between its mass and its speed:

and if we substitute this into the previous equation, we find the De Broglie wavelength of the electron:

So, the answer is True.
Answer:
Acceleration is the change in velocity divided by time
Explanation:
This is the correct answer because distance divided by time is the position. Speed multiplied by time is the distance. And acceleration is not just velocity, but the change in velocity over time.
Answer:
E. The period of oscillation increases.
Explanation:
The period of oscillation is:
T = 2π√(m/k)
Frequency is the inverse of period (f = 1/T), so as period increases, frequency decreases.
Increasing the mass will increase the period and decrease the frequency.