Answer:
a. 99.30% of the woman meet the height requirement
b. If all women are eligible except the shortest 1% and the tallest 2%, then height should be between 58.32 and 68.83
Explanation:
<em>According to the survey</em>, women's heights are normally distributed with mean 63.9 and standard deviation 2.4
a)
A branch of the military requires women's heights to be between 58 in and 80 in. We need to find the probabilities that heights fall between 58 in and 80 in in this distribution. We need to find z-scores of the values 58 in and 80 in. Z-score shows how many standard deviations far are the values from the mean. Therefore they subtracted from the mean and divided by the standard deviation:
z-score of 58 in=
= -2.458
z-score of 80 in=
= 6.708
In normal distribution 99.3% of the values have higher z-score than -2.458
0% of the values have higher z-score than 6.708. Therefore 99.3% of the woman meet the height requirement.
b)
To find the height requirement so that all women are eligible except the shortest 1% and the tallest 2%, we need to find the boundary z-score of the
shortest 1% and the tallest 2%. Thus, upper bound for z-score has to be 2.054 and lower bound is -2.326
Corresponding heights (H) can be found using the formula
and
Thus lower bound for height is 58.32 and
Upper bound for height is 68.83
The qualification best demonstrated in each example are:
- Reliability
- Teaching and Leadership Skills.
- Physical strength
<h3>What is the qualification status?</h3>
The term Qualification status is known to be that which shows or tells the formal certification that a person has.
Note that in the case of Ronin performing a careful inspections to identify fire hazards, his qualification will be Reliability.
Learn more about qualification from
brainly.com/question/26119802
#SPJ1
The code that read two numbers from user input, then, print the sum of those numbers are as follows:
x = int(input("write a number: "))
y = int(input("write another number: "))
print(x + y)
<h3 /><h3>Code explanation</h3>
- The first line of code ask the user for a number input. The integer input is stored in a variable x.
- The second line of code ask the user for another number input . The integer input is stored in a variable y.
- Finally, we print the sum of the user's input.
learn more on python code here: brainly.com/question/15183327?referrer=searchResults