Ask Your Question

MikeZabrocki's profile - activity

2016-11-03 09:47:21 +0200 received badge  Good Answer (source)
2016-11-03 02:52:39 +0200 commented answer Defining a generic symbolic function with symmetric arguments

It is possible to muck with the names so that the name in the input and output are the same, so that is not the real problem with this algebra (I will edit the answer so that it reflects this). I don't think that you've stated all the rules that your algebra satisfies. You didn't mention if you are allowed repeated parts entries or not. That is, does s(1,1) make sense? Now you are mentioning that there is a product on this algebra. Is the algebra commutative? Are there other relations? Does s(2,3)s(1,2) = s(1,2)s(2,3) or not?

2016-11-01 14:07:01 +0200 received badge  Nice Answer (source)
2016-11-01 10:23:19 +0200 received badge  Necromancer (source)
2016-11-01 03:16:57 +0200 received badge  Editor (source)
2016-11-01 03:15:08 +0200 answered a question Defining a generic symbolic function with symmetric arguments

Ok, it sounds like you want to work in the ring of symmetric functions (however you didn't mention that there might be a + or * or take linear combinations, but these features don't seem to interfere with what you are asking for). Are you allowed repeated entries?

If I am not mistaken, even if this is not precisely what you are looking for, it seems like this algebra should be your model.

You seem to be asking for a vector space whose coefficients are integers and whose index set is a sorted list of non-negative integers (I'm adding the non-negative integer condition for convenience). If this is the case, then lets call them 'partitions.' I hope you don't mind that they will display in weakly decreasing order rather than increasing order, but I don't see that option built in so it will take slightly more than a couple of lines of programming.

sage: Sym = SymmetricFunctions(ZZ)
sage: h = Sym.complete()
sage: h._prefix='s'
sage: def s(lst):
....:     return h.mul(h([a]) for a in lst)
....: 
sage: s([2,1,2,3])
s[3, 2, 2, 1]
sage: 2*s([2,4])+s([1,2,3])
s[3, 2, 1] + 2*s[4, 2]

Is this what you were looking for or am I mis-interpreting what you were asking?

P.S. calling the complete basis 's' kind of goes against my nature, because we use that for Schur functions normally. But the line "s._prefix='s'" makes sure that the result is displayed with an 's' instead of the default 'h' just to follow closely the notation you were looking for.

2015-03-26 17:54:15 +0200 received badge  Enlightened (source)
2015-03-26 11:05:53 +0200 received badge  Good Answer (source)
2015-03-25 17:33:15 +0200 received badge  Nice Answer (source)
2015-03-25 15:11:23 +0200 received badge  Teacher (source)
2015-03-25 13:19:14 +0200 answered a question 3D grid like the one in the picture

sum(sphere(center=(i,j,k),size=1/2,color=(i/4,j/4,k/4)) for i in range(5) for j in range(5) for k in range(5))