Problems from Histogram

Propose a list of 12 elements that represent the results of a casino roulette, including integers from 0 to 36. Then, propose a few possible intervals to do a histogram, so that every bar has the same height and has 4 rectangles. Finally, group the results by tens (including zero as the first one) and calculate the heights of the rectangles of the histogram of absolute frequencies.

See development and solution

Development:

  • Results: 0, 0, 9, 13, 13, 16, 21, 33, 34, 34, 35, 36.
  • The intervals are designed so that each one has 3 elements.

I1=[0,10]

I2=[11,17]

I3=[18,32]

I4=[33,36]

  • The following table shows the number of elements in every ten:
[0,10] 3
[11, 17] 3
[18,32] 1
[33,36] 5

The heights of every rectangle are calculated:

hi=fiaih0=311=0.27h1=37=0.43h2=114=0.07h3=54=1,25

Solution:

Results: 0, 0, 9, 13, 13, 16, 21, 33, 34, 34, 35, 36.

I1=[0,10]

I2=[11,17]

I3=[18,32]

I4=[33,36]

hi=fiaih0=311=0.27h1=37=0.43h2=114=0.07h3=54=1,25

Hide solution and development
View theory