M HYPE SPLASH
// updates

Are there more proper terms for "between, inclusive" and "between, exclusive"?

By Emma Valentine
$\begingroup$

I searched for this, but all I found was an English usage result. However, I am strictly asking about ranges of numbers, not "normal" English.

So, are there a terse terms for:

  • inclusive between, as in 1 is between 1 and 5
  • exclusive between, as in 3 is between 1 and 5, but 1 is not

Maybe something sporty like exobetween and endobetween?

$\endgroup$ 10

1 Answer

$\begingroup$

Although not as sporty as "endobetween" and "exobetween", mathematicians generally use the adjectives "closed" and "open" to describe the inclusion or exclusion of endpoints in an interval (range) of real numbers.

Thus $(0,1)$ is an open interval, excluding (not containing) the endpoints, and $[0,1]$ would be the corresponding closed interval resulting from including both endpoints.

Another paradigm from mathematical terminology would be that used of inequalities, namely strict (excluding the boundary/equality) or weak (including the boundary/equality). Thus IsBetweenStrict should be expected to reject the endpoints, while IsBetweenWeak should be expected to accept the endpoints.

$\endgroup$ 2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy