Answer:
a) P = 86720 N
b) L = 131.2983 mm
Explanation:
σ = 271 MPa = 271*10⁶ Pa
E = 119 GPa = 119*10⁹ Pa
A = 320 mm² = (320 mm²)(1 m² / 10⁶ mm²) = 3.2*10⁻⁴ m²
a) P = ?
We can apply the equation
σ = P / A ⇒ P = σ*A = (271*10⁶ Pa)(3.2*10⁻⁴ m²) = 86720 N
b) L₀ = 131 mm = 0.131 m
We can get ΔL applying the following formula (Hooke's Law):
ΔL = (P*L₀) / (A*E) ⇒ ΔL = (86720 N*0.131 m) / (3.2*10⁻⁴ m²*119*10⁹ Pa)
⇒ ΔL = 2.9832*10⁻⁴ m = 0.2983 mm
Finally we obtain
L = L₀ + ΔL = 131 mm + 0.2983 mm = 131.2983 mm
Answer:
Reflection
Explanation:
The specific behavior of light that will be essential to ensure the success of your design is "Reflection". This is because light maze makes use of a mirror and it's the light that is reflected that we see with our eyes. Also, the manner in which light is reflected off objects will affect the colors that are reflected as well.
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: 3/2mg
Explanation:
Express the moment equation about point B
MB = (M K)B
-mg cosθ (L/6) = m[α(L/6)](L/6) – (1/12mL^2 )α
α = 3g/2L cosθ
express the force equation along n and t axes.
Ft = m (aG)t
mg cosθ – Bt = m [(3g/2L cos) (L/6)]
Bt = ¾ mg cosθ
Fn = m (aG)n
Bn -mgsinθ = m[ω^2 (L/6)]
Bn =1/6 mω^2 L + mgsinθ
Calculate the angular velocity of the rod
ω = √(3g/L sinθ)
when θ = 90°, calculate the values of Bt and Bn
Bt =3/4 mg cos90°
= 0
Bn =1/6m (3g/L)(L) + mg sin (9o°)
= 3/2mg
Hence, the reactive force at A is,
FA = √(02 +(3/2mg)^2
= 3/2 mg
The magnitude of the reactive force exerted on it by pin B when θ = 90° is 3/2mg
Answer:
Take a 3 to 8 decoder with active low outputs
Assuming you are familiar with the functioning of decoders,
The three inputs of decoder of course are the first, second and the carry bit which you feed to the subtractor.
Next we examine the truth table of the full subtractor i formatted in the picture.
Then write the minterms for the difference output and borrow output from the given truth table picture I have mentioned before!!
Explanation:
hopi it to help you!!