Ask Your Question
1

define a polynomial ring

asked 11 years ago

gundamlh gravatar image

updated 11 years ago

Dear all,

sage: R.<x> = PolynomialRing(QQ); R
Univariate Polynomial Ring in x over Rational Field
sage: R([1,2,3])
3*x^2 + 2*x + 1
sage: R1.<x> = PolynomialRing(QQ,1); R1
Multivariate Polynomial Ring in x over Rational Field
sage: R1([1,2,3])
---------------------------------------------------------------------------    
TypeError: Could not find a mapping of the passed element to this ring.

  Note that a multivariate polynomial ring is returned when an
  explicit number is given.

     sage: PolynomialRing(QQ,"x",1)
     Multivariate Polynomial Ring in x over Rational Field
     sage: PolynomialRing(QQ,"x",0)
     Multivariate Polynomial Ring in no variables over Rational Field

I want to know the reason .. Why

a multivariate polynomial ring is returned when an explicit number is given.

?

Does it offer users of SAGE any simplicity/convenience?

Thanks in advance!

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 11 years ago

ppurka gravatar image

Yes. It offers the convenience of not having to define your variables. The number denotes the number of variables in the multivariate polynomial ring.

sage: PolynomialRing(QQ,"x",2)
Multivariate Polynomial Ring in x0, x1 over Rational Field
sage: R = PolynomialRing(QQ,"x",5); R
Multivariate Polynomial Ring in x0, x1, x2, x3, x4 over Rational Field
sage: R.inject_variables()
Defining x0, x1, x2, x3, x4
sage: x0 in R
True

So, now you can programmatically access the variables and play around with them.

sage: xvars = R.gens(); xvars
(x0, x1, x2, x3, x4)
sage: xvars[0] in R
True
Preview: (hide)
link

Comments

Thanks! Quick and in detail!

gundamlh gravatar imagegundamlh ( 11 years ago )

For PolynomialRing(QQ,"x",n) the integer n must be < 2**15 (otherwise "OverflowError: value too large to convert to short"). Do you know a way for having arbitrary large integer n ?

Sébastien Palcoux gravatar imageSébastien Palcoux ( 11 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

Stats

Asked: 11 years ago

Seen: 671 times

Last updated: Nov 24 '13