Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 2 years ago

Thrash gravatar image

Linear Independence in Quotients of Polynomial Rings

Consider the following:

K = GF(2)    # can be an arbitrary field
R.<a,b> = PolynomialRing(K)
I = R.ideal(a^2-1,a*b)
Q = R.quo(I)

Now 1,a,b are linearly dependent in Q because b=0 (in Q).

Is there an elegant way to check this with Sage, especially when the ideals get more complicated? That is: Is there a method to check whether (1,a1,,an) are linearly (in)dependent in a given quotient K[a1,,an]/I?

Linear Independence in Quotients of Polynomial Rings

Consider the following:

K = GF(2)    # can be an arbitrary field
R.<a,b> = PolynomialRing(K)
I = R.ideal(a^2-1,a*b)
Q = R.quo(I)

Now 1,a,b are linearly dependent in Q because b=0 (in Q).

Is there an elegant way to check this with Sage, especially when the ideals get more complicated? That is: Is there a method to check whether (1,a1,,an) 1,a1,,an are linearly (in)dependent in a given quotient K[a1,,an]/I?

click to hide/show revision 3
retagged

updated 2 years ago

FrédéricC gravatar image

Linear Independence in Quotients of Polynomial Rings

Consider the following:

K = GF(2)    # can be an arbitrary field
R.<a,b> = PolynomialRing(K)
I = R.ideal(a^2-1,a*b)
Q = R.quo(I)

Now 1,a,b are linearly dependent in Q because b=0 (in Q).

Is there an elegant way to check this with Sage, especially when the ideals get more complicated? That is: Is there a method to check whether 1,a1,,an are linearly (in)dependent in a given quotient K[a1,,an]/I?