Understanding Dot Notation in Plain English
Learn how to interpret row totals, column totals, grand totals, squared totals, and sums of squared observations without getting lost in statistical notation.
What each subscript and dot means.
“Sum then square” from “square then sum.”
Dot notation in ANOVA and DOE formulas.
1. The Basic Idea
Suppose an observation is written as:
Here, i usually identifies the row, treatment, or factor level, while j identifies the observation, replicate, or column.
2. How to Read Each Form
| Notation | Meaning | How to read it |
|---|---|---|
| \(y_{ij}\) | One individual observation | Observation j in row or treatment i |
| \(y_{i\cdot}\) | Sum across all j values for row i | Row i total |
| \(y_{\cdot j}\) | Sum across all i values for column j | Column j total |
| \(y_{\cdot\cdot}\) | Sum of every observation | Grand total |
Row 1, all columns
All rows, column 2
All rows, all columns
Sum over that position
3. Numerical Example
| Treatment | Observation 1 | Observation 2 | Observation 3 | Row total |
|---|---|---|---|---|
| 1 | 10 | 12 | 11 | 33 |
| 2 | 15 | 16 | 17 | 48 |
| 3 | 20 | 21 | 22 | 63 |
4. What Happens When There Is a Square?
Sum first, then square
This is a squared total.
Square first, then sum
This is the sum of squared observations.
These two expressions are not interchangeable.
5. Why They Are Different
When a total is squared, cross-product terms are created:
That is why the squared total, 1089, is much larger than the sum of squares, 365.
6. Interactive Practice
Enter three observations from one treatment row.
7. Where This Appears in ANOVA and DOE
Dot notation is used to shorten formulas for treatment totals, block totals, correction factors, and sums of squares.
| Quantity | Typical notation | Interpretation |
|---|---|---|
| Treatment total | \(y_{i\cdot}\) | All observations in treatment i added together |
| Block total | \(y_{\cdot j}\) | All observations in block j added together |
| Grand total | \(y_{\cdot\cdot}\) | All observations added together |
| Correction factor | \(y_{\cdot\cdot}^{2}\)/N | Grand total squared, then divided by total sample size |
| Raw sum of squares | \(\displaystyle \sum_i\sum_j y_{ij}^{2}\) | Square every observation, then add them |
8. Excel Implementation
| Task | Excel formula | Use case |
|---|---|---|
| Row total | =SUM(B2:D2) | Equivalent to \(y_{i\cdot}\) |
| Squared row total | =SUM(B2:D2)^2 | Equivalent to \(y_{i\cdot}^{2}\) |
| Sum of squared observations | =SUMSQ(B2:D2) | Equivalent to \(\displaystyle \sum_j y_{ij}^{2}\) |
| Grand total | =SUM(B2:D4) | Equivalent to \(y_{\cdot\cdot}\) |
| Grand total squared | =SUM(B2:D4)^2 | Equivalent to \(y_{\cdot\cdot}^{2}\) |
SUM(range)^2 and SUMSQ(range) calculate different quantities.9. Minitab Connection
Minitab normally performs these calculations internally when you run an ANOVA.
| Analysis | Minitab path |
|---|---|
| One-way ANOVA | Stat → ANOVA → One-Way |
| General factorial ANOVA | Stat → ANOVA → General Linear Model → Fit General Linear Model |
| Factorial DOE analysis | Stat → DOE → Factorial → Analyze Factorial Design |
For exams, remember that the notation explains the manual calculations, while Minitab reports the resulting sums of squares, mean squares, F-statistics, and p-values.
10. Quick Knowledge Check
Which expression represents \(10^2+12^2+11^2\)?
11. Final Summary
| Expression | Operation order | Plain-English meaning |
|---|---|---|
| \(y_{i\cdot}\) | Sum | Add all observations in row i |
| \(y_{i\cdot}^{2}\) | Sum, then square | Square the row total |
| \(\displaystyle \sum_j y_{ij}^{2}\) | Square, then sum | Square each observation in row i and add them |
| \(y_{\cdot\cdot}\) | Sum everything | Grand total |
| \(\displaystyle \sum_i\sum_j y_{ij}^{2}\) | Square every observation, then sum | Raw sum of squares for the complete dataset |