Multiple Linear Regression creates a line of best fit (a.k.a. "regression line") to represent the relationship between multiple predictor variable(s) and a response variable.
Scenario: Crammer Nation University wants to develop a regression equation to predict the "Number of Recruits" a given fraternity will receive this rush season given the "Parties Thrown" by the fraternity last year and the average "GPA" of that fraternity. They take a random sample of 52 fraternities on campus, resulting in the regression output below.
y-hat is the predicted value ("Number of Recruits") given predictor values xk (x1 = "Parties Thrown", x2 = "GPA"). b0 is the y-intercept. bk is the change in predicted response ("Number of Recruits") for each unit +/- in xk (x1 = "Parties Thrown", x2 = "GPA"). xk is the value for each of the predictor variables (x1 = "Parties Thrown", x2 = "GPA").
Scenario: Delta Apple Pi threw 3 parties last year and had an average GPA of 3.2. Based on your linear regression, how many recruits do you predict they'll receive this rush season?
y-hat is our estimate of what the actual mean response (µy) is at given predictor values. b0 is our estimate (with our sample) of the actual y-intercept for the population. bk is our estimate (with our sample) of the actual change in predicted mean mean response for each unit +/- in our predictor variables (xk).
µy is the population's mean response to given predictor variable values. β0 is the actual y-intercept for the population's regression. β1 is the actual change in the population's mean response for each unit +/- in our predictor variables (Xk).