Ask Your Question
0

can incidence algebras over ring that is not number ring?

asked 2020-07-13 14:20:06 +0200

Xie gravatar image

updated 2022-06-30 21:08:40 +0200

FrédéricC gravatar image

I try the following codes, but it does not work.

SF= SymmetricFunctions(QQ) 
s = SF.s() 
I = P.incidence_algebra(SF)
s([2,1])*I[1,1]  
TypeError: unsupported operand parent(s) for *: 'Symmetric Functions over Rational Field in the Schur basis' and 'Incidence algebra of Finite lattice containing 4 elements over Symmetric Functions over Rational Field'
edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
0

answered 2020-07-14 08:45:04 +0200

FrédéricC gravatar image

Like this

P = posets.PentagonPoset()
SF = SymmetricFunctions(QQ) 
s = SF.s() 
I = P.incidence_algebra(s)
s([2,1])*I[1,1]

This is because SF.s() is another parent.

edit flag offensive delete link more

Comments

Thanks! I only use s for computation and do not know s can be used as a ring.

Xie gravatar imageXie ( 2020-07-14 10:34:27 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2020-07-13 14:20:06 +0200

Seen: 190 times

Last updated: Jul 14 '20