Ask Your Question
0

can incidence algebras over ring that is not number ring?

asked 4 years ago

Xie gravatar image

updated 2 years ago

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'
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 4 years ago

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.

Preview: (hide)
link

Comments

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

Xie gravatar imageXie ( 4 years ago )

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: 4 years ago

Seen: 258 times

Last updated: Jul 14 '20