Answer:
#Initialise a tuple
team_names = ('Rockets','Raptors','Warriors','Celtics')
print(team_names[0])
print(team_names[1])
print(team_names[2])
print(team_names[3])
Explanation:
The Python code illustrates or printed out the tuple team names at the end of a season.
The code displayed is a function that will display these teams as an output from the program.
Answer:
The strength coefficient is K = 591.87 MPa
Explanation:
We can calculate the strength coefficient using the equation that relates the tensile strength with the strain hardening index given by

where Sut is the tensile strength, K is the strength coefficient we need to find and n is the strain hardening index.
Solving for strength coefficient
From the strain hardening equation we can solve for K

And we can replace values

Thus we get that the strength coefficient is K = 591.87 MPa
Answer: the standard deviation STD of machine B is s (Lb) = 0.4557
Explanation:
from the given data, machine A and machine B produce half of the rods
Lt = 0.5La + 0.5Lb
so
s² (Lt) = 0.5²s²(La) + 0.5²s²(Lb) + 0.5²(2)Cov (La, Lb)
but Cov (La, Lb) = Corr(La, Lb) s(La) s(Lb) = 0.4s (La) s(Lb)
so we substitute
s²(Lt) = 0.25s² (La) + 0.25s² (Lb) + 0.4s (La) s(Lb)
0.4² = 0.25 (0.5²) + 0.25s² (Lb) + (0.5)0.4(0.5) s(Lb)
0.64 = 0.25 + s²(Lb) + 0.4s(Lb)
s²(Lb) + 0.4s(Lb) - 0.39 = 0
s(Lb) = { -0.4 ± √(0.16 + (4*0.39)) } / 2
s (Lb) = 0.4557
therefore the standard deviation STD of machine B is s (Lb) = 0.4557
The answer & explanation for this question is given in the attachment below.