Why math, statistics, and Python?
1. A student wants to know whether education is linked to wages. Which workflow best matches the econometric way of thinking?
Variables, equations, and functions
2. In wage = f(education, experience), what is the best interpretation of the function?
Reading mathematical notation
3. In wage_i, what does the subscript i help us track?
Summation notation
4. If a formula uses a summation over i = 1 to n, what is it asking us to do?
Mean, median, variance, and standard deviation
5. A wage variable has a high standard deviation. What does that most directly tell us?
Covariance and correlation
6. A correlation between education and wage is positive. What is the strongest accurate interpretation at this stage?
Probability basics
7. If P(employed) = 0.92, which statement correctly uses the complement rule?
Random variables
8. Before observing a graduate's first wage offer, why can the wage be treated as a random variable?
Normal distribution
9. Why is the normal distribution useful in an introductory econometrics course?
Sampling and sample vs. population
10. A survey of 1,000 workers is used to learn about all workers in a region. What is the population?
Hypothesis testing intuition
11. In a test of whether education is related to wage, what does H0: beta1 = 0 usually represent?
Confidence intervals intuition
12. Why is a confidence interval often more informative than only reporting one estimate?
Introduction to Python
13. Why is reproducible Python code valuable in data analysis?
Python variables and basic calculations
14. If hourly_wage = 20 and hours = 35, what is Python doing when it calculates hourly_wage * hours?
Working with pandas DataFrames
15. In a DataFrame for wage data, what does one row usually represent?
Loading CSV data in Python
16. After running df = pd.read_csv('wage_sample.csv'), what is df?
Descriptive statistics in Python
17. Why should students run df.describe() before estimating a model?
Creating simple graphs in Python
18. What is the main learning value of a scatter plot of education and wage?
Mini Python practice lab
19. Which sequence best reflects a careful first Python workflow?
Module 0 review
20. What is the main purpose of Module 0 in this course?