UpSkill Sprint Consulting logoUpSkill Sprint Consulting
StatisticsBeginnerGeneral10 minutesInteractive practice
ANOVA & DOE Foundations

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.

Interpret
What each subscript and dot means.
Distinguish
“Sum then square” from “square then sum.”
Apply
Dot notation in ANOVA and DOE formulas.

1. The Basic Idea

The dot means: sum over the index that the dot replaces.

Suppose an observation is written as:

\[y_{ij}\]

Here, i usually identifies the row, treatment, or factor level, while j identifies the observation, replicate, or column.

\[y_{23}=\text{the third observation in treatment or row 2}\]

2. How to Read Each Form

NotationMeaningHow to read it
\(y_{ij}\)One individual observationObservation j in row or treatment i
\(y_{i\cdot}\)Sum across all j values for row iRow i total
\(y_{\cdot j}\)Sum across all i values for column jColumn j total
\(y_{\cdot\cdot}\)Sum of every observationGrand total
\(y_{1\cdot}\)
Row 1, all columns
\(y_{\cdot 2}\)
All rows, column 2
\(y_{\cdot\cdot}\)
All rows, all columns
Dot = wildcard
Sum over that position

3. Numerical Example

TreatmentObservation 1Observation 2Observation 3Row total
110121133
215161748
320212263
\[y_{1\cdot}=10+12+11=33\]
\[y_{\cdot 1}=10+15+20=45\]
\[y_{\cdot\cdot}=10+12+11+15+16+17+20+21+22=144\]

4. What Happens When There Is a Square?

Order matters: in \(y_{i\cdot}^{2}\), calculate the total first, then square it.

Sum first, then square

\[y_{1\cdot}^{2}=(10+12+11)^2=33^2=1089\]

This is a squared total.

Square first, then sum

\[\sum_{j=1}^{3} y_{1j}^{2}=10^2+12^2+11^2=365\]

This is the sum of squared observations.

These two expressions are not interchangeable.

\[y_{1\cdot}^{2}\ne\sum_j y_{1j}^{2}\]

5. Why They Are Different

When a total is squared, cross-product terms are created:

\[(10+12+11)^2=10^2+12^2+11^2+2(10)(12)+2(10)(11)+2(12)(11)\]

That is why the squared total, 1089, is much larger than the sum of squares, 365.

Memory rule: look at where the square is placed. If it is outside the total, sum first. If it is attached to each y, square each observation first.

6. Interactive Practice

Enter three observations from one treatment row.

Results will appear here.

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.

QuantityTypical notationInterpretation
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}\)/NGrand 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

TaskExcel formulaUse case
Row total=SUM(B2:D2)Equivalent to \(y_{i\cdot}\)
Squared row total=SUM(B2:D2)^2Equivalent 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)^2Equivalent to \(y_{\cdot\cdot}^{2}\)
Excel caution: SUM(range)^2 and SUMSQ(range) calculate different quantities.

9. Minitab Connection

Minitab normally performs these calculations internally when you run an ANOVA.

AnalysisMinitab path
One-way ANOVAStat → ANOVA → One-Way
General factorial ANOVAStat → ANOVA → General Linear Model → Fit General Linear Model
Factorial DOE analysisStat → 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\)?

Select an answer.

11. Final Summary

ExpressionOperation orderPlain-English meaning
\(y_{i\cdot}\)SumAdd all observations in row i
\(y_{i\cdot}^{2}\)Sum, then squareSquare the row total
\(\displaystyle \sum_j y_{ij}^{2}\)Square, then sumSquare each observation in row i and add them
\(y_{\cdot\cdot}\)Sum everythingGrand total
\(\displaystyle \sum_i\sum_j y_{ij}^{2}\)Square every observation, then sumRaw sum of squares for the complete dataset
One sentence to remember: a dot tells you what to sum over, while the location of the square tells you whether to square before or after summing.
Back to Statistics