Answer:
Due to touch of teflon, its charge will reduce but will not go to zero. Some amount of its initial charge will be transferred to Aluminum rod. So, aluminum rod will have a non-zero negative charge.
Explanation:
Answer:
point_dist = math.sqrt((math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2))
Explanation:
The distance formula is the difference of the x coordinates squared, plus the difference of the y coordinates squared, all square rooted. For the general case, it appears you simply need to change how you have written the code.
point_dist = math.sqrt((math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2))
Note, by moving the 2 inside of the pow function, you have provided the second argument that it is requesting.
You were close with your initial attempt, you just had a parenthesis after x1 and y1 when you should not have.
Cheers.
Answer:
the correct distance is 202 ft
Explanation:
The computation of the correct distance is shown below:
But before that correction to be applied should be determined
= (101 ft - 100 ft) ÷ (100 ft) × 200 ft
= 2 ft
Now the correct distance is
= 200 ft + 2 ft
= 202 ft
Hence, the correct distance is 202 ft
The same would be relevant and considered too
Answer:
The minimum volume requirement for the granite stones is 1543.64 cm³
Explanation:
1 granite stone weighs 10 denarium
100 granted stones will weigh 1000 denarium
1 denarium = 3.396g
1000 denarium = 3396g.
But we're told that 20% of material is lost during the making of these stones.
This means the mass calculated represents 80% of the original mass requirement, m.
80% of m = 3396
m = 3396/0.8 = 4425 g
This mass represents the minimum mass requirement for making the stones.
To now obtain the corresponding minimum volume requirement
Density = mass/volume
Volume = mass/density = 4425/2.75 = 1543.64 cm³
Hope this helps!!!