Statistics and Probability Chapter 1

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/59

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 8:26 AM on 7/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

60 Terms

1
New cards

What is the formal definition of Statistics as a science?

The science of collecting, organizing, analyzing, interpreting, and presenting data to support informed decision-making.

2
New cards

Statistics used to summarize and describe the features of a dataset without drawing conclusions beyond that data is known as _____ statistics.

Descriptive

3
New cards

What is the primary goal of Inferential Statistics?

To draw conclusions or generalizations about a population based on information from a sample.

4
New cards

The complete set of all individuals, objects, or measurements of interest is called the _____.

Population

5
New cards

Term: Sample

Definition: A subset or part of the population selected for analysis.

6
New cards

A numerical summary of a population (such as the population mean \mu) is called a _____.

Parameter

7
New cards

A numerical summary of a sample (such as the sample mean bar{x}) is called a _____.

Statistic

8
New cards

In the context of knowledge, why is a parameter considered 'fixed but unknown'?

It is a constant value for the population at a given time, but its exact value is rarely known because we cannot measure the entire population.

9
New cards

How does the knowledge of a statistic differ from that of a parameter?

A statistic is known and calculated directly from sample data, whereas a parameter is often an unknown target value.

10
New cards

What level of measurement classifies data into mutually exclusive categories with no logical order or ranking?

Nominal

11
New cards

Which level of measurement applies to data that can be categorized and ranked, but where the differences between ranks are not meaningful?

Ordinal

12
New cards

Data where the differences between values are meaningful, but there is no 'true zero' point, belongs to the _____ level of measurement.

Interval

13
New cards

What distinguishes the Ratio level of measurement from the Interval level?

The Ratio level has a 'true zero' point, meaning a value of zero indicates the complete absence of the characteristic.

14
New cards

Variables that can only take on specific, isolated values (often counts) are classified as _____ variables.

Discrete

15
New cards

Variables that can take on any value within a given range, typically resulting from measurements, are called _____ variables.

Continuous

16
New cards

Data collected directly by the researcher for a specific purpose is called _____ data.

Primary

17
New cards

Data previously collected by others for a different purpose is called _____ data.

Secondary

18
New cards

Sampling bias that occurs when a researcher selects the most easily accessible members of a population is called _____ bias.

Convenience

19
New cards

What is Voluntary Response bias?

Bias that occurs when sample members self-select into a study, often resulting in overrepresentation of people with strong opinions.

20
New cards

Bias that occurs when a significant portion of the sampled individuals do not participate is called _____ bias.

Nonresponse

21
New cards

The sampling method where every member of the population has an equal and independent chance of being selected is _____.

Simple Random Sampling

22
New cards

What is Systematic Sampling?

A method where every k-th member of a population is selected from a starting point determined at random.

23
New cards

The arithmetic average of a dataset is called the _____.

Mean

24
New cards

Term: Median

Definition: The middle value of a dataset when the observations are arranged in order of magnitude.

25
New cards

The value that appears with the highest frequency in a dataset is the _____.

Mode

26
New cards

Which measure of central tendency is described as being 'robust' or resistant to outliers?

Median

27
New cards

Why is the mean more sensitive to extreme values than the median?

The mean incorporates the numerical value of every observation in the dataset, whereas the median only depends on the middle position.

28
New cards

The difference between the maximum and minimum values in a dataset is the _____.

Range

29
New cards

What does the Sample Variance (s^2) measure?

The average of the squared deviations of the observations from the sample mean.

30
New cards

Formula: Sample Variance (s^2)

s^2 = \frac{\sum (x_i - \bar{x})^2}{n - 1}

31
New cards

The positive square root of the variance is known as the _____.

Standard Deviation

32
New cards

Why is the Standard Deviation preferred over Variance for reporting on specification sheets?

It is expressed in the same units as the original data, making it more interpretable.

33
New cards

The spread of the middle 50% of the data is measured by the _____.

Interquartile Range (IQR)

34
New cards

How is the Interquartile Range (IQR) calculated?

IQR = Q3 - Q1

35
New cards

According to the 1.5 x IQR rule, an observation is a suspected outlier if it falls more than 1.5 IQRs below _____ or above _____.

Q1; Q3

36
New cards

In a distribution that is Right-Skewed (positively skewed), the mean is typically _____ than the median.

Greater

37
New cards

In a distribution that is Left-Skewed (negatively skewed), the mean is typically _____ than the median.

Less

38
New cards

Which chart type is best suited for showing the distribution of a single continuous numerical variable?

Histogram

39
New cards

What does a Scatter Plot investigate?

The relationship or correlation between two numerical variables.

40
New cards

Which visualization uses a five-number summary (Min, Q1, Median, Q3, Max) to display data distribution and outliers?

Box Plot

41
New cards

A _____ chart is most effective for displaying trends or changes in a variable over a continuous period of time.

Line

42
New cards

When comparing frequencies of different categorical groups, which chart type is most appropriate?

Bar Chart

43
New cards

In a histogram, what is the trade-off of using a bin width that is too large?

It leads to information loss and hides important patterns in the data distribution.

44
New cards

In Python's pandas library, which method provides a summary of central tendency, dispersion, and shape of a DataFrame's distribution?

df.describe()

45
New cards

When using `df.describe()` on a categorical (nominal) column in pandas, what specific information is returned?

The count of non-null values, number of unique categories, the most frequent category (top), and its frequency.

46
New cards

Which Python library is primarily used for data manipulation and analysis using DataFrames?

pandas

47
New cards

Which Python library is the standard for creating static, animated, and interactive visualizations?

Matplotlib

48
New cards

What is the primary purpose of the NumPy library in Python?

Performing efficient numerical computations and handling multi-dimensional arrays.

49
New cards

Python function: `plt.hist(data)`

Purpose: To generate and plot a histogram of the provided data.

50
New cards

In the standard Matplotlib plotting workflow, which command is used to actually display the generated plot on the screen?

plt.show()

51
New cards

Why can Variance never be a negative number?

It is calculated by averaging the squares of the deviations, and squares of real numbers are always non-negative.

52
New cards

What does a Variance of exactly 0 imply about a dataset?

All observations in the dataset are identical and there is no variability.

53
New cards

Which level of measurement is appropriate for 'ZIP/postal codes'?

Nominal (they are labels, not quantities).

54
New cards

Which level of measurement is appropriate for 'Exam letter grades (A, B, C, D, F)'?

Ordinal.

55
New cards

Under what condition is the mean approximately equal to the median?

When the distribution is symmetric (or bell-shaped).

56
New cards

In a Box Plot, the vertical lines extending from the box to the minimum and maximum values are called _____.

Whiskers

57
New cards

What does the 'top' row represent in the output of `df.describe()` for a pandas categorical column?

The most common value (the mode) in that column.

58
New cards

Python code: `df['ColumnName'].mean()`

Purpose: To calculate the arithmetic mean of a specific column in a pandas DataFrame.

59
New cards

Which level of measurement is appropriate for 'Engine temperature recorded in Celsius'?

Interval (Celsius has a relative, not absolute, zero).

60
New cards

What sampling bias is introduced if a safety survey only interviews day-shift workers at a 24-hour factory?

Selection bias (or coverage bias), as it systematically excludes a segment of the population.