Having a continuous range that is start-inclusive and end-exclusive is helpful for bucketing, binning, and histograms. There are countless cases for continuous ranges that are start-inclusive and end-inclusive (defining the span of a graph axis, an acceptable range of values, etc).
But what about ranges that are start-exclusive/end-inclusive or start-exclusive/end-exclusive? Are there real-world applications for those? Can you list any applications in practical mathematical modeling, statistics, machine learning, industry, etc?
Examples: Here are test scores from a statistics class with 50 students, sorted in order of increasing size. (Brackets [] give the index of the first number printed on each row.)
Below are four frequency histograms of the data. All might be considered reasonable for various purposes. The first histogram uses the default binning programmed into R. The binning of each of the other three is shown by the
brparameter: first endpoint, last endpoint, and interval width. R uses intervals of type $(a,b],$ unless otherwise instructed. (Bins of the last histogram correspond to letter grades.)The
rugprocedure indicates which numerical values are present in the sample (There are not 50 tick marks because of ties.) R tends to label the x-axis with round numbers, even if they are not exact bin boundaries.