Answer:
Math and Computer Skills. A qualified engineer should be good at math, at least through the level of calculus and trigonometry, and understand the importance of following the data when making design decisions.
Organization and Attention to Detail.
Curiosity.
Creativity.
Critical Thinking.
Intuition.
Explanation:
Answer:
Mass, in physics, quantitative measure of inertia, a fundamental property of all matter.
Explanation:
Mass is the matter that makes up objects
Disinfectant supplies, such as wipes of gel.
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:
component of acceleration are a = 3.37 m/s² and ar = 22.74 m/s²
magnitude of acceleration is 22.98 m/s²
Explanation:
given data
velocity = 10 m/s
initial time to = 0
distance s = 400 m
time t = 14 s
to find out
components and magnitude of acceleration after the car has travelled 200 m
solution
first we find the radius of circular track that is
we know distance S = 2πR
400 = 2πR
R = 63.66 m
and tangential acceleration is
S = ut + 0.5 ×at²
here u is initial speed and t is time and S is distance
400 = 10 × 14 + 0.5 ×a (14)²
a = 3.37 m/s²
and here tangential acceleration is constant
so velocity at distance 200 m
v² - u² = 2 a S
v² = 10² + 2 ( 3.37) 200
v = 38.05 m/s
so radial acceleration at distance 200 m
ar = 
ar = 
ar = 22.74 m/s²
so magnitude of total acceleration is
A = 
A = 
A = 22.98 m/s²
so magnitude of acceleration is 22.98 m/s²