So I found some similarities between arrays and set notation while learning about sets and sequences in precalc e.g. set notation: {a | cond } = { a1, a2, a3, a4, ..., an} given that n is the domain (or index) of the array, a subset of Natural numbers (or unsigned integer). Most programming languages would provide similar methods to arrays that are applied to sets e.g. upperbounds & lowerbounds; possibly suprema and infima too.

Where did arrays come from?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Python's list comprehensions, in this respect, are as good as it gets:

[x for x in someset if x < 5]

Very "set-like". The for x in <...> part specifies which set the elements are selected from, and if x... specifies the condition.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.