Compound machine is the answer
Answer:
The car's position at 3.0 seconds is 17.5 meters. The car will reach 0.0 meters at 10 seconds.
Explanation:
You can rewrite the equation as P= -2.5t+25. t=time and P is equal to position; so you will plug in 3.0 seconds into t. The equation will now look like: P = -2.5(3.0)+25
P = -2.5(3.0) + 25
P = -7.5 + 25
P = 17.5 meters
Now, to find when the car reaches 0.0 meters, we will plug that into P since P = position and will solve for t.
P = -2.5t + 25
0.0 = -2.5t + 25
-25 -25
-25 = -2.5t
-25/-2.5 = -2.5t/-2.5
10 = t
So the car will reach 0.0 meters at 10 seconds.
Answer:
Explanation:
For we to calculate the shear stress on the upper plate and give its direction. Sketch the variation of shear stress across the channel, I used hand in solving it, check attached file below
Answer:
# the function fix_yz is defined
# it takes a string as parameter
def fix_yz(word):
# new_word is to hold the new corrected string
new_word = ""
# loop through the string
# and check for any instance of y or z.
# if any instance is found, it is replaced accordingly
for each_letter in word:
if each_letter == 'z':
new_word += 'y'
elif each_letter == 'Z':
new_word += 'Y'
elif each_letter == 'y':
new_word += 'z'
elif each_letter == 'Y':
new_word += 'Z'
else:
new_word += each_letter
# the value of new string is returned
return new_word
Explanation:
The function is written in Python 3 and it is well commented. An image is attached showing the output of the given example.
The function take a string as input. It then loop through the string and check for any instance of 'y' or 'z'; if any instance is found it is swapped accordingly and then append to the new_word.
The value of bew_word is returned after the loop.
Answer:
t= 71.42 s
Explanation:
Given that
Power ,P = 100 Watt
Efficiency of the motor ,η = 70 %
mass , m = 100 kg
h = 5 m
Let's take time taken = t
The work done to move 100 kg by 5 m
W= m g h
W= 100 x 10 x 5 ( take g= 10 m/s²)
W = 5000 J
We know that 1 Watt= 1 J/s
Therefore
P x t= W
Now by putting the values in the above equation
100 x t x 0.7= 5000

t= 71.42 s
Therefore the time taken by motor will be 71.42 s.