I am trying find the formula to find b in y=mx+b. I have a scatter plot with 10 values. I have found m using =(sxy - (sx * sy) / n) / (sxx - (sx)^2 /n). Now I need to find b. I have been looking everyplace I could think to but the best thing I found was this $b=\frac{\displaystyle\sum _{i=1} ^ny_i-b\sum_{i=1}^nx_i}{n}$, but I don't know what that means. Also, I know I can use built in functions, that misses the point. I also don't want to just take two points and figure our about where it goes.
x y
9 9
2 6
9 81
5 28
8 65
7 53
5 27
10 100
4 21
4 17
m = 8.9844
There is a typo.
$$b=\frac{\displaystyle\sum _{i=1} ^ny_i-m\sum_{i=1}^nx_i}{n}$$
Are you able to compute $b$ now?