AP Statistics

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/99

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

100 Terms

1
New cards

How do you check if there is outliers?

calculate IQR; anything above Q3+1.5(IQR) or below Q1-1.5(IQR) is an outlier

2
New cards

If a graph is skewed, should we calculate the median or the mean? Why?

median; it is resistant to skews and outliers

3
New cards

If a graph is roughly symmetrical, should we calculate the median or the mean? Why?

mean; generally is more accurate if the data has no outliers

4
New cards

What is in the five number summary?

Minimum, Q1, Median, Q3, Maximum

5
New cards

Relationship between variance and standard deviation?

variance=(standard deviation)^2

6
New cards

variance definition

the variance is roughly the average of the squared differences between each observation and the mean

7
New cards

standard deviation

the standard deviation is the square root of the variance

8
New cards

What should we use to measure spread if the median was calculated?

IQR

9
New cards

What should we use to measure spread if the mean was calculated?

standard deviation

10
New cards

What is the IQR? How much of the data does it represent?

Q3-Q1; 50%

11
New cards

How do you calculate standard deviation?

1. Type data into L1

2. Find mean with 1 Variable Stats

3. Turn L2 into (L1-mean)

4. Turn L3 into (L2)^2

5. Go to 2nd STAT over to MATH, select sum(

6. Type in L3

7. multiply it by (1/n-1)

8. Square root it

12
New cards

What is the formula for standard deviation?

knowt flashcard image
13
New cards

Categorical variables vs. Quantitative Variables

Categorical: individuals can be assigned to one of several groups or categories

Quantitative: takes numberical values

14
New cards

If a possible outlier is on the fence, is it an outlier?

No

15
New cards

Things to include when describing a distribution

Center (Mean or Median), Unusual Gaps or Outliers, Spread (Standard Deviation or IQR), Shape (Roughly Symmetric, slightly/heavily skewed left or right, bimodal, range)

16
New cards

Explain how to standardize a variable. What is the purpose of standardizing a variable?

Subtract the distribution mean and then divide by standard deviation. Tells us how many standard deviations from the mean an observation falls, and in what direction.

17
New cards

What effect does standardizing the values have on the distribution?

shape would be the same as the original distribution, the mean would become 0, the standard deviation would become 1

18
New cards

What is a density curve?

a curve that (a) is on or above the horizontal axis, and (b) has exactly an area of 1

19
New cards

Inverse Norm

when you want to find the percentile: invNorm (area, mean, standard deviation)

20
New cards

z

(x-mean)/standard deviation

21
New cards

pth percentile

the value with p percent observations less than is

22
New cards

cumulative relative frequency graph

can be used to describe the position of an individual within a distribution or to locate a specified percentile of the distribution

23
New cards

How to find and interpret the correlation coefficient r for a scatterplot

STAT plot, scatter, L1 and L2 (Plot 1: ON); STAT --> CALC --> 8:LinReg(a+bx)

No r? --> 2nd 0 (Catalog) down to Diagnostic ON

24
New cards

r

tells us the strength of a LINEAR association. -1 to 1. Not resistant to outliers

25
New cards

r^2

the proportion (percent) of the variation in the values of y that can be accounted for by the least squares regression line

26
New cards

residual plot

a scatterplot of the residuals against the explanatory variable. Residual plots help us assess how well a regression line fits the data. It should have NO PATTERN

27
New cards

regression line

a line that describes how a response variable y changes as an explanatory variable x changes. We often use a regression line to predict the value of y for a given value of x.

28
New cards

residual formula

residual=y-y(hat) aka observed y - predicted y

29
New cards

What method do you use to check if a distribution or probability is binomial?

BINS:

1. Binary: There only two outcomes (success and failure)

2. Independent: The events independent of one another?

3. Number: There is a fixed number of trials

4. Success: The probability of success equal in each trial

30
New cards

What method do you use to check if a distribution or probability is geometric?

BITS:

1. Binary: There only two outcomes (success and failure)

2. Independent: The events independent of one another

3. Trials: There is not a fixed number of trials

4. Success: The probability of success equal in each trial

31
New cards

n

number of trials

32
New cards

p

probability of success

33
New cards

k

number of successes

34
New cards

Binomial Formula for P(X=k)

(n choose k) p^k (1-p)^(n-k)

35
New cards

Binomial Calculator Function to find P(X=k)

binompdf(n,p,k)

36
New cards

Binomial Calculator Function for P(X≤k)

binomcdf(n,p,k)

37
New cards

Binomial Calculator Function for P(X≥k)

1-binomcdf(n,p,k-1)

38
New cards

mean of a binomial distribution

np

39
New cards

standard deviation of a binomial distribution

√(np(1-p))

40
New cards

Geometric Formula for P(X=k)

(1-p)^(k-1) x p

41
New cards

Geometric Calculator Function to find P(X=k)

geometpdf(p,k)

42
New cards

Geometric Calculator Function for P(X≤k)

geometcdf(p,k)

43
New cards

Geometric Calculator Function for P(X≥k)

1-geometcdf(p,k-1)

44
New cards

Mean of a geometric distribution

1/p=expected number of trials until success

45
New cards

Standard deviation of a geometric distribution

√((1-p)/(p²))

46
New cards

What do you do if the binomial probability is for a range, rather than a specific number?

Take binomcdf(n,p,maximum) - binomcdf(n,p,minimum-1)

47
New cards

how do you enter n choose k into the calculator?

type "n" on home screen, go to MATH --> PRB --> 3: ncr, type "k"

48
New cards

μ(x+y)

μx+μy

49
New cards

μ(x-y)

μx-μy

50
New cards

σ(x+y)

√(σ²x+σ²y)

51
New cards

What does adding or subtracting a constant effect?

Measures of center (median and mean).

Does NOT affect measures of spread (IQR and Standard Deviation) or shape.

52
New cards

What does multiplying or dividing a constant effect?

Both measures of center (median and mean) and measures of spread (IQR and standard deviation).

Shape is not effected.

For variance, multiply by a² (if y=ax+b).

53
New cards

σ(x-y)

√(σ²x+σ²y) --> you add to get the difference because variance is distance from mean and you cannot have a negative distance

54
New cards

calculate μx by hand

X1P1+X2P2+.... XKPK (SigmaXKPK)

55
New cards

calculate var(x) by hand

(X1-μx)²p(1)+(X2-μx)²p(2)+.... (Sigma(Xk-μx)²p(k))

56
New cards

Standard deviation

square root of variance

57
New cards

discrete random variables

a fixed set of possible x values (whole numbers)

58
New cards

continuous random variables

-x takes all values in an interval of numbers

-can be represented by a density curve (area of 1, on or above the horizontal axis)

59
New cards

What is the variance of the sum of 2 random variables X and Y?

(σx)²+(σy)², but ONLY if x and y are independent.

60
New cards

mutually exclusive

no outcomes in common

61
New cards

addition rule for mutually exclusive events

P (A U B)

P(A)+P(B)

62
New cards

complement rule

P(A^C)

1-P(A)

63
New cards

general addition rule (not mutually exclusive)

P(A U B)

P(A)+P(B)-P(A n B)

64
New cards

intersection

P(A n B)

both A and B will occur

65
New cards

conditional probability

P (A | B)

P(A n B) / P(B)

66
New cards

independent events (how to check independence)

P(A) = P(A|B)

P(B)= P(B|A)

67
New cards

multiplication rule for independent events

P(A n B)

P(A) x P(B)

68
New cards

general multiplication rule (non-independent events)

P(A n B)

P(A) x P(B|A)

69
New cards

sample space

a list of possible outcomes

70
New cards

probability model

a description of some chance process that consists of 2 parts: a sample space S and a probability for each outcome

71
New cards

event

any collection of outcomes from some chance process, designated by a capital letter (an event is a subset of the sample space)

72
New cards

What is the P(A) if all outcomes in the sample space are equally likely?

P(A) = (number of outcomes corresponding to event A)/(total number of outcomes in sample space)

73
New cards

Complement

probability that an event does not occur

74
New cards

What is the sum of the probabilities of all possible outcomes?

1

75
New cards

What is the probability of two mutually exclusive events?

P(A U B)= P(A)+P(B)

76
New cards

five basic probability rules

1. for event A, 0≤P(A)≤1

2. P(S)=1

3. If all outcomes in the sample space are equally likely, P(A)=number of outcomes corresponding to event A / total number of outcomes in sample space

4. P(A^C) = 1-P(A)

5. If A and B are mutually exclusive, P(A n B)=P(A)+P(B)

77
New cards

When is a two-way table helpful

displays the sample space for probabilities involving two events more clearly

78
New cards

In statistics, what is meant by the word "or"?

could have either event or both

79
New cards

When can a Venn Diagram be helpful?

visually represents the probabilities of not mutually exclusive events

80
New cards

What is the general addition rule for two events?

If A and B are any two events resulting from some chance process, then the probability of A or B (or both) is P(A U B)= P(A)+P(B)-P(A n B)

81
New cards

What does the intersection of two or more events mean?

both event A and event B occur

82
New cards

What does the union of two or more events mean?

either event A or event B (or both) occurs

83
New cards

What is the law of large numbers?

If we observe more and more repetitions of any chance process, the proportion of times that a specific outcome occurs approaches a single value, which we can call the probability of that outcome

84
New cards

the probability of any outcome...

is a number between 0 and 1 that describes the proportion of times the outcome would occur in a very long series of repetitions

85
New cards

How do you interpret a probability?

We interpret probability to represent the most accurate results if we did an infinite amount of trials

86
New cards

What are the two myths about randomness?

1. Short-run regularity --> the idea that probability is predictable in the short run

2. Law of Averages --> people except the alternative outcome to follow a different outcome

87
New cards

simulation

the imitation of chance behavior, based on a model that accurately reflects the situation

88
New cards

Name and describe the four steps in performing a simulation

1. State: What is the question of interest about some chance process

2. Plan: Describe how to use a chance device to imitate one repetition of process; clearly identify outcomes and measured variables

3. Do: Perform many repetitions of the simulation

4. Conclude: results to answer question of interest

89
New cards

What are some common errors when using a table of random digits?

not providing a clear description of the simulation process for the reader to replicate the simulation

90
New cards

What does the intersection of two or more events mean?

both event A and event B occur

91
New cards

sample

The part of the population from which we actually collect information. We use information from a sample to draw conclusions about the entire population

92
New cards

population

In a statistical study, this is the entire group of individuals about which we want information

93
New cards

sample survey

A study that uses an organized plan to choose a sample that represents some specific population. We base conclusions about the population on data from the sample.

94
New cards

convenience sample

A sample selected by taking the members of the population that are easiest to reach; particularly prone to large bias.

95
New cards

bias

The design of a statistical study shows ______ if it systematically favors certain outcomes.

96
New cards

voluntary response sample

People decide whether to join a sample based on an open invitation; particularly prone to large bias.

97
New cards

random sampling

The use of chance to select a sample; is the central principle of statistical sampling.

98
New cards

simple random sample (SRS)

every set of n individuals has an equal chance to be the sample actually selected

99
New cards

strata

Groups of individuals in a population that are similar in some way that might affect their responses.

100
New cards

stratified random sample

To select this type of sample, first classify the population into groups of similar individuals, called strata. Then choose a separate SRS from each stratum to form the full sample.