Answer:
45 Mpa
Explanation:
The maximum shear stress,
is given by

Where T is the torque and d is the diameter.
Substituting 29820.586 N.m for T and 0.15m for d then we obtain

Answer:
%Program prompts user to input vector
v = input('Enter the input vector: ');
%Program shows the value that user entered
fprintf('The input vector:\n ')
disp(v)
%Loop for checking all array elements
for i = 1 : length(v)
%check if the element is a positive number
if v(i) > 0
%double the element
v(i) = v(i) * 2;
%else the element is negative number.
else
%triple the element
v(i) = v(i) * 3;
end
end
%display the modified vector
fprintf('The modified vector:\n ')
disp(v)
Answer:
mnfokfnfi3or
Explanation:
can you translate it into english.....
Answer:
b)1.08 N
Explanation:
Given that
velocity of air V= 45 m/s
Diameter of pipe = 2 cm
Force exerted by fluid F

So force exerted in x-direction


F=0.763 N
So force exerted in y-direction


F=0.763 N
So the resultant force R


R=1.079
So the force required to hold the pipe is 1.08 N.