What is the mathematical symbol for range?

An unsophisticated question from a neophyte:

Given the numbers: $1,2,3,4,5$

What is the symbol for the range of the numbers?

i.e. the lowest-highest number in the set. For example, the min max is $1-5$.

The ____ is $1-5$. (insert math symbol into blank).

Should such a beast exist, I'd be particularly interested in it's unicode character...

Tried searching a few online resources, such as: http://rapidtables.com/math/symbols/Basic_Math_Symbols.htm without success.


Solution 1:

You are looking for either:

  1. A closed interval: $[a,b]$ represents the set of all real numbers greater or equal to $a$ and less or equal to $b$.

  2. A integer interval: $[a\ldotp\ldotp b]$ represents all integers in between $a$ and $b$. ($[1\ldotp\ldotp 5] = \{1,2,3,4,5\}$)

Solution 2:

This is a useful wikipedia reference.

It is important to make the distinction between whether or not a particular endpoint is included. Use ( or ) to exclude and [ or ] to include.

For instance

$$(a,b) \;\;\Rightarrow \;\; \{x\in\Bbb R:a<x<b\}$$ $$[a,b] \;\;\Rightarrow \;\;\{x\in\Bbb R:a\le x\le b\}$$ $$\{a..b\} \;\;\Rightarrow \;\;\{x\in\Bbb Z:a\le x\le b\}$$