Histogram Math Example 1

Follow the full solution, then compare it with the other examples linked below.

Example 1

easy
The following data represent exam scores: {52,64,68,71,75,75,78,82,85,88,90,93}\{52, 64, 68, 71, 75, 75, 78, 82, 85, 88, 90, 93\}. Group them into intervals [50,70),[70,80),[80,90),[90,100][50,70), [70,80), [80,90), [90,100] and describe how to construct a histogram.

Solution

  1. 1
    Count values in each interval: [50,70)[50,70): 52, 64, 68 โ†’ 3 values; [70,80)[70,80): 71, 75, 75, 78 โ†’ 4 values; [80,90)[80,90): 82, 85, 88 โ†’ 3 values; [90,100][90,100]: 90, 93 โ†’ 2 values
  2. 2
    Draw horizontal axis with interval boundaries (50, 70, 80, 90, 100) and vertical axis for frequency
  3. 3
    Draw touching bars (no gaps) with heights 3, 4, 3, 2 for each interval respectively
  4. 4
    Label axes: 'Score' on x-axis, 'Frequency' on y-axis

Answer

Histogram with bars of height 3, 4, 3, 2 over intervals [50,70),[70,80),[80,90),[90,100][50,70),[70,80),[80,90),[90,100].
Histograms display the distribution of quantitative data. Unlike bar charts, bars touch to show continuous data. The height represents frequency (or relative frequency). The shape reveals skewness, modes, and spread.

About Histogram

A histogram is a bar chart of a frequency distribution where bars represent count or density of data within consecutive equal-width intervals (bins).

Learn more about Histogram โ†’

More Histogram Examples