Is the set of aggregation functions easy to characterise? I mean functions like addition, multiplication, maximum, minimum, count...
So basically everything that's commutative and associative:
f(x,y)=f(y,x)
f(f(x,y),z)=f(x,f(y,z))
What are other classes of such functions?
I can't...