Neither the subject nor those who measure the reponse variable know which treatment a subject received.
What is a double-blind experiment?
P-value = 0.001
What is "Assuming H0 is true, there is a 0.001 probability of getting a sample statistic of x-bar/p-hat or more extreme by chance in a random sample of size n."?
How to identify outliers for univariate data
What is Q1 - 1.5(IQR) and Q3 + 1.5(IQR)?
The correlation coefficient between L1 and L2
What is STAT-->CALC-->8:LinReg(a+bx) L1, L2?
A common form of blocking for comparing just two treatments.
What is matched pairs?
The slope in the least-square regression line, y = 15 - 4x
What is "For every one unit increase in the explanatory variable, there is expected to be a 4 unit decrease in the response variable"?
(no credit if "expected" or "predicted" isn't in your answer)
The probability of at least 8 successes in 12 trials given a probability of success of 45%.
What is DISTR (or 2nd VARS)--> 1-binomcdf(12,.45,7)?
When some groups in the population are left out of the process of choosing a sample
What is undercoverage?
A z-score of -3.45
What is "The data value is 3.45 standard deviations below the mean"?
How to determine if two events, A and B, are independent
What is P(B|A) = P(B) or P(A and B) = P(A)P(B)?
The z* for a 92% confidence interval
What is DISTR (or 2nd VARS)--> invNorm(.96)?
The population is divided into groups. Some groups are randomly selected and all individuals in the chosen groups are sampled.
What is cluster sampling?
95% Confidence level for a population proportion
What is "If we were to take many, many samples of size n and calculate many, many intervals, about 95% of the intervals will capture the true population proportion."?
If you started with "We are 95% confident...", that is the interpretation on the confidence interval, not the confidence level.
The standard deviation of the difference between two random variables.
What is the square root of the sum of the variances of the two random variables?
The rule for finding the probability of obtaining the first success on the 5th trial.
What is P(X=5) = p(1-p)^4
(on the calculator this would be the geometpdf() command)
Performing a two sample z test for p1-p2
What is "2-PropZTest."
Remember the input is x: the number if successes. Not, p-hat.
The effects of two variables on the response cannot be distinguished from each other.
What is confounding?
Given the following output:
S=1.438
R-Sq = 97.7%
R-Sq (adj) = 97.8%
Interpret r2
What is "97.7% of the variability in the response variable is explained by the linear regression model with x=the explanatory variable."
The rule for finding 10 successes in 15 trials.
What is P(X=10) = (15 C 10)*p^10*(1-p)^5
(know the notation, but you can also do this on your calculator using binompdf)
Ten random intergers from 1 to 100.
What is MATH--> PRB--> 5: RantInt(1,100,10)