Answer:
GMAW
Explanation:
It's literally the initials of that type of welding
Answer:
(a) 0.12924
(b) Taking into consideration significance level of 0.05 yet the value of p is greater than 0.05, it suggests that the coin is fair hence the coin can be used at the beginning of any sport event.
Explanation:
(a)
n=200 for fair coin getting head, p= 0.5
Expectation = np =200*0.5=100
Variance = np(1 - p) = 100(1-0.5)=100*0.5=50
Standard deviation,
Z value for 108,
P( x ≥108) = P( z >1.13)= 0.12924
(b)
Taking into consideration significance level of 0.05 yet the value of p is greater than 0.05, it suggests that the coin is fair hence the coin can be used at the beginning of any sport event.
Ummm did you try to add or subtract and multiply or divide that can get your answer
Answer:
a) 280MPa
b) -100MPa
c) -0.35
d) 380 MPa
Explanation:
GIVEN DATA:
mean stress 
stress amplitude 
a) 
--------------1

-----------2
solving 1 and 2 equation we get

b) 
c)
stress ratio

d)magnitude of stress range

= 280 -(-100) = 380 MPa
Answer:
Define Variables and Use List methods to do the following
Explanation:
#<em>Conjoins two lists together</em>
all_names = male_names.union(female_names)
#<em>Finds the names that appear in both lists, just returns those</em>
neutral_names = male_names.intersection(female_names)
#<em>Returns names that are NOT in both lists</em>
specific_names = male_names.symmetric_difference(female_names)