Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

How to adress to variables of a polynomoal?

In my study I have to work with something like 'BooleanPolynomialRing (... 'x', 10)

After that I can create function in the form X1 + x1x3... However I would like to create functions in more generic form like (pseudocode followes ) x[1]+x[2]x[3] where x[1] is equivalent for x1, etc. The final goal is to be able to construct functions programmatically combining indexed expressions like x[i]+x[j] etc

How to adress address to variables of a polynomoal?

In my study I have to work with something like 'BooleanPolynomialRing (... 'x', 10)

After that I can create function in the form X1 + x1x3... However I would like to create functions in more generic form like (pseudocode followes ) x[1]+x[2]x[3] where x[1] is equivalent for x1, etc. The final goal is to be able to construct functions programmatically combining indexed expressions like x[i]+x[j] etc

How to address to Call polynomial ring variables of a polynomoal?by index

In my study I have to work with something like 'BooleanPolynomialRing (... BooleanPolynomialRing(... 'x', 10).

After that I can create function in the form x1 + x1*x3 + ....

X1 + x1x3...

However I would like to create functions in more generic form like (pseudocode followes ) x[1]+x[2]x[3] like x[1] + x[2]*x[3] where x[1] x[1] is equivalent for x1, etc. x1, etc.

The final goal is to be able to construct functions programmatically programmatically combining indexed expressions like x[i]+x[j] etcx[i] + x[j] etc.