Answer:
hope this helps
Explanation:
answers:
1. Chemical engineering is most difficult because it's a mix of physics, chemistry and math
2. Stoichiometry is so important because it shows how materials react, interact and play off each other
3. Yes I think consumers would notice if process control standards were not met. for example medicines, when people take Tylenol or cold pills, if the amount of time it took to kick it becomes longer, people will become aware that the product is not consistent and reliable.
4. i have no idea sorry :(
5. This is explaining how there are rules and regulations to make the workplace safe. it can be accomplished by following those rules and regulations
What is the question? It looks like a statement...
Answer:
import numpy as np
import time
def matrixMul(m1,m2):
if m1.shape[1] == m2.shape[0]:
t1 = time.time()
r1 = np.zeros((m1.shape[0],m2.shape[1]))
for i in range(m1.shape[0]):
for j in range(m2.shape[1]):
r1[i,j] = (m1[i]*m2.transpose()[j]).sum()
t2 = time.time()
print("Native implementation: ",r1)
print("Time: ",t2-t1)
t1 = time.time()
r2 = m1.dot(m2)
t2 = time.time()
print("\nEfficient implementation: ",r2)
print("Time: ",t2-t1)
else:
print("Wrong dimensions!")
Explanation:
We define a function (matrixMul) that receive two arrays representing the two matrices to be multiplied, then we verify is the dimensions are appropriated for matrix multiplication if so we proceed with the native implementation consisting of two for-loops and prints the result of the operation and the execution time, then we proceed with the efficient implementation using .dot method then we return the result with the operation time. As you can see from the image the execution time is appreciable just for large matrices, in such a case the execution time of the efficient implementation can be 1000 times faster than the native implementation.
Answer:
7.07%
Explanation:
Thermal efficiency can be by definition seen as the ratio of the heat utilized by a heat engine to the total heat units in the fuel consumed.
We will determine the thermal efficiency of the given problem at the attached file.
Answer:
Explanation:
The answer to the given problem is been solved in the fine attached below.