The
4th selection is appropriate:
The first line is a dashed line which joins ordered pairs (-2, 1) and (3, 1). The second line is a dashed line and joins ordered pairs (-2, -2) and (3, 3). The portion common above the first line and above the second line is shaded
Answer:
2.28% probability that a person selected at random will have an IQ of 110 or higher
Step-by-step explanation:
Problems of normally distributed samples are solved using the z-score formula.
In a set with mean
and standard deviation
, the zscore of a measure X is given by:

The Z-score measures how many standard deviations the measure is from the mean. After finding the Z-score, we look at the z-score table and find the p-value associated with this z-score. This p-value is the probability that the value of the measure is smaller than X, that is, the percentile of X. Subtracting 1 by the pvalue, we get the probability that the value of the measure is greater than X.
In this problem, we have that:

What is the probability that a person selected at random will have an IQ of 110 or higher?
This is 1 subtracted by the pvalue of Z when X = 110. So



has a pvalue of 0.0228
2.28% probability that a person selected at random will have an IQ of 110 or higher
Answer:
2
I am taking my first programming course, so my apologies if this is a dumb question/possibly classified by the wrong category on this site. One of the exercise problems I am working on is the following:
Define a function print_total_inches, with parameters num_feet and num_inches, that prints the total number of inches. Note: There are 12 inches in a foot. Ex:
print_total_inches(5, 8) prints:
Total inches: 68
Step-by-step explanation: