To find the fitted regression model of Y on X, we need to calculate the regression coefficients, beta0_hat and beta1_hat. Using the given data, we can substitute the values into the formulas to find the regression coefficients. We have beta1_hat = 0.055 and beta0_hat = 63.804.
To find the fitted regression model of Y on X, we need to calculate the regression coefficients, beta0_hat and beta1_hat.
To calculate beta1_hat, we use the formula: beta1_hat = ((n * sum(X*Y)) - (sum(X) * sum(Y))) / ((n * sum(X^2)) - (sum(X))^2), where n is the number of data points.
To calculate beta0_hat, we use the formula: beta0_hat = (sum(Y) - (beta1_hat * sum(X))) / n.
Using the given data: X = [104, 110, 117, 128, 112, 111, 120, 133, 164, 167] and Y = [93, 103, 106, 111, 116, 126, 117, 107, 104, 111], we can substitute these values into the formulas to find the regression coefficients.
beta1_hat = ((10 * sum(X*Y)) - (sum(X) * sum(Y))) / ((10 * sum(X^2)) - (sum(X))^2) = ((10 * 192442) - (1228 * 1170)) / ((10 * 156008) - 1228^2) = 646 / 11744 = 0.055
beta0_hat = (sum(Y) - (beta1_hat * sum(X))) / n = (1140 - (0.055 * 1228)) / 10 = 63.804