Answer:
a magnet that retains its magnetic properties in the absence of an inducing field or current
Answer:
a) interior, b) inside, c) minor
Explanation:
In this exercise you are asked to select the correct words so that the statements have been correct
Electric charges always repel each other when they are of the same sign, in conductors this has the consequence that charges accumulate on the surface and the interior remains without electric charges. with this we analyze the statements
a) interior
b) inside
c) minor
therefore the phrase would be:
(a) The net charge is always zero ---INTERIOR--- the surface of an isolated conductor.
(b) The electric field is always zero ---INSIDE--- a perfect conductor.
(c) The charge density on the surface of an isolated, charged conductor is highest where the surface is ---MINOR---to)
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:
(a) 
(b) 
Explanation:
We can derive the initial speed of the rock from the equation of the speed in function of the time:

Using the given values for the speed at time t=1.7s, we get:

In words, the speed of the rock at launch is 34m/s (a).
Next, we use this to calculate the speed at t=4.9s:

This means that the speed of the rock at 4.9s after the launch is 14m/s (b), and the negative sign means that it is moving downwards.