We are given a bivariate data set $(x_i, y_i)$ for $i = 1, 2, 3, \dots, 10$, with the following information:
- $\sum x_i y_i = 6200$
- $\sum x_i = 400$
- $\sum y_i = 1220$
- $\sum x_i^2 = 1800$
We are tasked with finding the equation of the line of best fit.
Step 1: Formula for the line of best fit
The equation of the line of best fit (or the regression line) is given by:
\[
y = mx + c
\]
where:
- $m$ is the slope,
- $c$ is the y-intercept.
The formulas for $m$ and $c$ are as follows:
\[
m = \frac{n \sum x_i y_i - \sum x_i \sum y_i}{n \sum x_i^2 - (\sum x_i)^2}
\]
\[
c = \frac{\sum y_i - m \sum x_i}{n}
\]
where $n$ is the number of data points (in this case, $n = 10$).
Step 2: Calculate the slope $m$
Substitute the given values into the formula for $m$:
\[
m = \frac{10 \times 6200 - 400 \times 1220}{10 \times 1800 - 400^2}
\]
First, calculate the numerator:
\[
10 \times 6200 = 62000, \quad 400 \times 1220 = 488000
\]
So the numerator is:
\[
62000 - 488000 = -426000
\]
Now calculate the denominator:
\[
10 \times 1800 = 18000, \quad 400^2 = 160000
\]
So the denominator is:
\[
18000 - 160000 = -142000
\]
Thus, the slope is:
\[
m = \frac{-426000}{-142000} = 3
\]
Step 3: Calculate the y-intercept $c$
Now, use the formula for $c$:
\[
c = \frac{1220 - 3 \times 400}{10}
\]
First, calculate the numerator:
\[
3 \times 400 = 1200, \quad 1220 - 1200 = 20
\]
So the y-intercept is:
\[
c = \frac{20}{10} = 2
\]
Step 4: Equation of the line of best fit
Now that we have the values for $m$ and $c$, the equation of the line of best fit is:
\[
y = 3x + 2
\]
Final Answer:
The equation of the line of best fit is $y = 3x + 2$.