Min, Max, Bin Width.
Three numbers set up everything else: the minimum, the maximum, and the bin width. The first two come straight from built-in functions:
=MIN(B2:B103) in cell D5,
=MAX(B2:B103) in cell D6. The functions
ignore order and return exact endpoints — no manual
sorting needed.
The bin width is your choice of resolution.
A common rule of thumb is (max − min) / k
for some sensible number of bins k (often 7 to 10
for a data set of size 100). Whatever you pick, format the
three cells to 1 decimal place — the
grader expects that precision.
=MAX(B2:B103) → D6
(D6 − D5) / k → D7






