[Math] Learning to read complex math formulas

notation

could anybody point me to a book or article where I could learn how to read formulas like this one:

enter image description here

I have no idea what that means.

Best Answer

The following points may be helpful:

  1. $i$ is used to index the various numerical values $x_i$ you have. Usually, unless specified otherwise, it is understood that $i$ ranges from $1$ to some finite value $n$.

    Thus, in your example, you have $n$ observations each one of them is denoted by $x_i$.

  2. $\bar{x}$ denotes the mean of the $n$ observations i.e.,

    $$\bar{x} = \frac{x_1+x_2+\ldots+x_n}{n}$$

    The same interpretation holds for $y_i$ and $\bar{y}$.

  3. $\Sigma$ stands for sum and hence we could have re-written the mean as follows:

    $$\bar{x} = \frac{x_1+x_2+\ldots+x_n}{n}=\frac{\Sigma_i{x_i}}{n}$$

I hope that helps decipher what is going on in the equation.