Is there a name for functions like min, max, mean, sum which take $n$ numbers and maps them to one number? (In programming, they would probably be called variadic functions... I'm not too sure if this is the right term here)
Asked
Active
Viewed 94 times
2
Martin Thoma
- 9,821
1 Answers
1
There's no term I can think of used in mathematics, but in the context of SQL (the standard database query language) the term aggregating would be used to describe those functions, precisely for the property you mentioned, i.e. they take a value from multiple rows and return a single value.
By the way, if you check the Wikipedia article on Relational Algebra, (which is the mathematical formalism behind SQL), you can see that 'aggregation' is the term they use, and the functions you mention are four of the five standard functions they mention (you're missing count).
JonathanZ
- 10,615
mean. – Mees de Vries Apr 26 '17 at 17:16