Changeset 6606:cac6ec5f25c5


Ignore:
Timestamp:
09/30/07 11:10:39 (6 years ago)
Author:
Mike Hansen <mhansen@…>
Branch:
default
Message:

Changed "Polynomial Ring in ..." to "Multivariate Polynomial Ring in ...".

Location:
sage
Files:
35 edited

Legend:

Unmodified
Added
Removed
  • sage/calculus/calculus.py

    r6377 r6606  
    10441044            3*x^35 + 2*y^35 
    10451045            sage: parent(g) 
    1046             Polynomial Ring in x, y over Finite Field of size 7 
     1046            Multivariate Polynomial Ring in x, y over Finite Field of size 7 
    10471047        """ 
    10481048        vars = self.variables() 
  • sage/categories/pushout.py

    r5875 r6606  
    317317            TypeError: Ambiguous Base Extension 
    318318            sage: pushout(ZZ['x,y,z'], QQ['w,x,z,t']) 
    319             Polynomial Ring in w, x, y, z, t over Rational Field 
     319            Multivariate Polynomial Ring in w, x, y, z, t over Rational Field 
    320320 
    321321        Some other examples 
    322322            sage: pushout(Zp(7)['y'], Frac(QQ['t'])['x,y,z']) 
    323             Polynomial Ring in x, y, z over Fraction Field of Univariate Polynomial Ring in t over 7-adic Field with capped relative precision 20 
     323            Multivariate Polynomial Ring in x, y, z over Fraction Field of Univariate Polynomial Ring in t over 7-adic Field with capped relative precision 20 
    324324            sage: pushout(ZZ['x,y,z'], Frac(ZZ['x'])['y']) 
    325             Polynomial Ring in y, z over Fraction Field of Univariate Polynomial Ring in x over Integer Ring 
     325            Multivariate Polynomial Ring in y, z over Fraction Field of Univariate Polynomial Ring in x over Integer Ring 
    326326            sage: pushout(MatrixSpace(RDF, 2, 2), Frac(ZZ['x'])) 
    327327            Full MatrixSpace of 2 by 2 dense matrices over Fraction Field of Univariate Polynomial Ring in x over Real Double Field 
  • sage/crypto/mq/sr.py

    r6461 r6606  
    2222     
    2323    sage: sr.R 
    24     Polynomial Ring in k100, k101, k102, k103, x100, x101, x102, x103, w100, w101, w102, w103, s000, s001, s002, s003, k000, k001, k002, k003 over Finite Field in a of size 2^4 
     24    Multivariate Polynomial Ring in k100, k101, k102, k103, x100, x101, x102, x103, w100, w101, w102, w103, s000, s001, s002, s003, k000, k001, k002, k003 over Finite Field in a of size 2^4 
    2525 
    2626    For SR(1,1,1,4) the ShiftRows matrix isn't that interresting: 
  • sage/ext/interactive_constructors_c.pyx

    r5374 r6606  
    196196        sage: S = quo(R, (x^3, x^2 + y^2), 'a,b') 
    197197        sage: S 
    198         Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^3, x^2 + y^2) 
     198        Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^3, x^2 + y^2) 
    199199        sage: a^2 
    200200        -b^2 
  • sage/matrix/matrix2.pyx

    r6590 r6606  
    11491149            [x1 x0] 
    11501150            sage: M.kernel() 
    1151             Vector space of degree 2 and dimension 1 over Fraction Field of Polynomial Ring in x0, x1 over Rational Field 
     1151            Vector space of degree 2 and dimension 1 over Fraction Field of Multivariate Polynomial Ring in x0, x1 over Rational Field 
    11521152            Basis matrix: 
    11531153            [ 1 -1] 
  • sage/misc/functional.py

    r6510 r6606  
    714714        sage: R, x = objgens(MPolynomialRing(QQ,3, 'x')) 
    715715        sage: R 
    716         Polynomial Ring in x0, x1, x2 over Rational Field 
     716        Multivariate Polynomial Ring in x0, x1, x2 over Rational Field 
    717717        sage: x 
    718718        (x0, x1, x2) 
  • sage/modules/free_module.py

    r6564 r6606  
    5858    sage: M = FreeModule(R,2) 
    5959    sage: M.base_ring() 
    60     Polynomial Ring in x, y over Rational Field 
     60    Multivariate Polynomial Ring in x, y over Rational Field 
    6161 
    6262    sage: VectorSpace(QQ, 10).base_ring() 
     
    669669            sage: M = FreeModule(R,2) 
    670670            sage: M.ambient_module() 
    671             Ambient free module of rank 2 over the integral domain Polynomial Ring in x, y over Rational Field 
     671            Ambient free module of rank 2 over the integral domain Multivariate Polynomial Ring in x, y over Rational Field 
    672672             
    673673            sage: V = FreeModule(QQ, 4).span([[1,2,3,4], [1,0,0,0]]); V 
  • sage/rings/finite_field.py

    r6518 r6606  
    545545        Multivariate polynomials also coerce: 
    546546            sage: R = k['x,y,z']; R 
    547             Polynomial Ring in x, y, z over Finite Field in a of size 5^2 
     547            Multivariate Polynomial Ring in x, y, z over Finite Field in a of size 5^2 
    548548            sage: k(R(2)) 
    549549            2 
  • sage/rings/fraction_field.py

    r5479 r6606  
    8585        Fraction Field of Univariate Polynomial Ring in x over Integer Ring 
    8686        sage: FractionField(MPolynomialRing(RationalField(),2,'x')) 
    87         Fraction Field of Polynomial Ring in x0, x1 over Rational Field 
     87        Fraction Field of Multivariate Polynomial Ring in x0, x1 over Rational Field 
    8888 
    8989    Dividing elements often implicitly creates elements of the fraction field. 
     
    182182            sage: R = Frac(QQ['x,y']) 
    183183            sage: R 
    184             Fraction Field of Polynomial Ring in x, y over Rational Field 
     184            Fraction Field of Multivariate Polynomial Ring in x, y over Rational Field 
    185185            sage: R.ring() 
    186             Polynomial Ring in x, y over Rational Field 
     186            Multivariate Polynomial Ring in x, y over Rational Field 
    187187        """ 
    188188        return self.__R 
     
    259259        EXAMPLES: 
    260260            sage: R = Frac(PolynomialRing(QQ,'z',10)); R 
    261             Fraction Field of Polynomial Ring in z0, z1, z2, z3, z4, z5, z6, z7, z8, z9 over Rational Field 
     261            Fraction Field of Multivariate Polynomial Ring in z0, z1, z2, z3, z4, z5, z6, z7, z8, z9 over Rational Field 
    262262            sage: R.ngens() 
    263263            10 
     
    271271        EXAMPLES: 
    272272            sage: R = Frac(PolynomialRing(QQ,'z',10)); R 
    273             Fraction Field of Polynomial Ring in z0, z1, z2, z3, z4, z5, z6, z7, z8, z9 over Rational Field 
     273            Fraction Field of Multivariate Polynomial Ring in z0, z1, z2, z3, z4, z5, z6, z7, z8, z9 over Rational Field 
    274274            sage: R.0 
    275275            z0 
  • sage/rings/homset.py

    r5476 r6606  
    9393        sage: S.<a,b> = R.quotient(x^2 + y^2) 
    9494        sage: phi = S.hom([b,a]); phi 
    95         Ring endomorphism of Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
     95        Ring endomorphism of Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
    9696          Defn: a |--> b 
    9797                b |--> a 
  • sage/rings/morphism.py

    r6530 r6606  
    8282    sage: R.<x,y,z> = PolynomialRing(QQ,3) 
    8383    sage: phi = R.hom([y,z,x^2]); phi 
    84     Ring endomorphism of Polynomial Ring in x, y, z over Rational Field 
     84    Ring endomorphism of Multivariate Polynomial Ring in x, y, z over Rational Field 
    8585      Defn: x |--> y 
    8686            y |--> z 
     
    9494    sage: phi = S.hom([a^2, -b]) 
    9595    sage: phi 
    96     Ring endomorphism of Quotient of Polynomial Ring in x, y over Rational Field by the ideal (y^2 + 1) 
     96    Ring endomorphism of Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (y^2 + 1) 
    9797      Defn: a |--> a^2 
    9898            b |--> -b 
     
    287287    sage: K = QQ # by the way :-) 
    288288    sage: R.<a,b,c,d> = K[]; R 
    289     Polynomial Ring in a, b, c, d over Rational Field 
     289    Multivariate Polynomial Ring in a, b, c, d over Rational Field 
    290290    sage: S.<u> = K[]; S 
    291291    Univariate Polynomial Ring in u over Rational Field 
    292292    sage: f = R.hom([0,0,0,u], S); f 
    293293    Ring morphism: 
    294       From: Polynomial Ring in a, b, c, d over Rational Field 
     294      From: Multivariate Polynomial Ring in a, b, c, d over Rational Field 
    295295      To:   Univariate Polynomial Ring in u over Rational Field 
    296296      Defn: a |--> 0 
     
    365365        sage: S.lift() 
    366366        Set-theoretic ring morphism: 
    367           From: Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2, y) 
    368           To:   Polynomial Ring in x, y over Rational Field 
     367          From: Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2, y) 
     368          To:   Multivariate Polynomial Ring in x, y over Rational Field 
    369369          Defn: Choice of lifting map 
    370370        sage: S.lift() == 0 
     
    570570        sage: phi = S.cover(); phi 
    571571        Ring morphism: 
    572           From: Polynomial Ring in x, y over Rational Field 
    573           To:   Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
     572          From: Multivariate Polynomial Ring in x, y over Rational Field 
     573          To:   Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
    574574          Defn: Natural quotient map 
    575575        sage: phi(x+y) 
     
    624624        sage: S.<a, b, c> = R.quo(x^3 + y^3 + z^3) 
    625625        sage: phi = S.hom([b, c, a]); phi 
    626         Ring endomorphism of Quotient of Polynomial Ring in x, y, z over Rational Field by the ideal (x^3 + y^3 + z^3) 
     626        Ring endomorphism of Quotient of Multivariate Polynomial Ring in x, y, z over Rational Field by the ideal (x^3 + y^3 + z^3) 
    627627          Defn: a |--> b 
    628628                b |--> c 
  • sage/rings/polynomial/groebner_fan.py

    r4499 r6606  
    105105            sage: G = I.groebner_fan(); G 
    106106            Groebner fan of the ideal: 
    107             Ideal (x^2*y - z, -x + y^2*z, x*z^2 - y) of Polynomial Ring in x, y, z over Rational Field 
     107            Ideal (x^2*y - z, -x + y^2*z, x*z^2 - y) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    108108        """ 
    109109        self.__is_groebner_basis = is_groebner_basis 
     
    150150            sage: G._gfan_maps() 
    151151            (Ring morphism: 
    152               From: Polynomial Ring in x, y, z over Rational Field 
    153               To:   Polynomial Ring in a, b, c over Rational Field 
     152              From: Multivariate Polynomial Ring in x, y, z over Rational Field 
     153              To:   Multivariate Polynomial Ring in a, b, c over Rational Field 
    154154              Defn: x |--> a 
    155155                    y |--> b 
    156156                    z |--> c, 
    157157             Ring morphism: 
    158               From: Polynomial Ring in a, b, c over Rational Field 
    159               To:   Polynomial Ring in x, y, z over Rational Field 
     158              From: Multivariate Polynomial Ring in a, b, c over Rational Field 
     159              To:   Multivariate Polynomial Ring in x, y, z over Rational Field 
    160160              Defn: a |--> x 
    161161                    b |--> y 
     
    259259            [z^15 - z, y - z^11, x - z^9] 
    260260            sage: X[0].ideal() 
    261             Ideal (z^15 - z, y - z^11, x - z^9) of Polynomial Ring in x, y, z over Rational Field 
     261            Ideal (z^15 - z, y - z^11, x - z^9) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    262262            sage: X[:5] 
    263263            [[z^15 - z, y - z^11, x - z^9], 
     
    528528            sage: G 
    529529            Groebner fan of the ideal: 
    530             Ideal (-3*x^2 + y^3, 2*x^2 - x - 2*y^3 - y + z^3) of Polynomial Ring in x, y, z over Rational Field 
     530            Ideal (-3*x^2 + y^3, 2*x^2 - x - 2*y^3 - y + z^3) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    531531            sage: G.tropical_basis () 
    532532            [-4*x^2 - x - y + z^3, -3*x^2 + y^3] 
     
    665665            sage: G = R.ideal([x - z^3, y^2 - 13*x]).groebner_fan() 
    666666            sage: G[0].ideal() 
    667             Ideal (-13*z^3 + y^2, -z^3 + x) of Polynomial Ring in x, y, z over Rational Field 
     667            Ideal (-13*z^3 + y^2, -z^3 + x) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    668668        """ 
    669669        return self.__groebner_fan.ring().ideal(self) 
  • sage/rings/polynomial/multi_polynomial.pyx

    r5976 r6606  
    124124            x^3 + (17*w^3 + 3*w)*x + w^5 + z^5 
    125125            sage: parent(f.polynomial(x)) 
    126             Univariate Polynomial Ring in x over Polynomial Ring in w, z over Rational Field 
     126            Univariate Polynomial Ring in x over Multivariate Polynomial Ring in w, z over Rational Field 
    127127 
    128128            sage: f.polynomial(w) 
  • sage/rings/polynomial/multi_polynomial_element.py

    r6511 r6606  
    208208            sage: f = (x + y)/3 
    209209            sage: f.parent() 
    210             Polynomial Ring in x, y over Rational Field 
     210            Multivariate Polynomial Ring in x, y over Rational Field 
    211211 
    212212        If we do the same over $\ZZ$ the result is the same as  
     
    216216            sage: f = (x + y)/3       
    217217            sage: f.parent() 
    218             Polynomial Ring in x, y over Rational Field 
     218            Multivariate Polynomial Ring in x, y over Rational Field 
    219219            sage: f = (x + y) * 1/3       
    220220            sage: f.parent() 
    221             Polynomial Ring in x, y over Rational Field 
     221            Multivariate Polynomial Ring in x, y over Rational Field 
    222222             
    223223        But we get a true fraction field if the denominator is not in  
     
    226226            sage: f = x/y 
    227227            sage: f.parent() 
    228             Fraction Field of Polynomial Ring in x, y over Integer Ring 
     228            Fraction Field of Multivariate Polynomial Ring in x, y over Integer Ring 
    229229        """ 
    230230        return self.parent().fraction_field()(self.__element, right.__element) 
     
    467467 
    468468            sage: R.<x> = PolynomialRing(GF(7),1); R 
    469             Polynomial Ring in x over Finite Field of size 7 
     469            Multivariate Polynomial Ring in x over Finite Field of size 7 
    470470            sage: f = 5*x^2 + 3; f 
    471471            -2*x^2 + 3 
     
    509509            2 
    510510            sage: c.parent() 
    511             Polynomial Ring in x, y over Rational Field 
     511            Multivariate Polynomial Ring in x, y over Rational Field 
    512512            sage: c in MPolynomialRing(RationalField(), 2, names = ['x','y']) 
    513513            True 
     
    524524            sage: R.<x,y> = GF(389)[] 
    525525            sage: parent(R(x*y+5).coefficient(R(1))) 
    526             Polynomial Ring in x, y over Finite Field of size 389 
     526            Multivariate Polynomial Ring in x, y over Finite Field of size 389 
    527527        """ 
    528528        R = self.parent() 
     
    621621            5*x*y^10 + x^2*z^9 + y*z^10 + z^11 
    622622            sage: g.parent() 
    623             Polynomial Ring in x, y, z over Rational Field 
     623            Multivariate Polynomial Ring in x, y, z over Rational Field 
    624624        """ 
    625625        if self.is_homogeneous(): 
  • sage/rings/polynomial/multi_polynomial_ideal.py

    r6592 r6606  
    4444    sage: S.<a,b> = R.quotient((x^2 + y^2, 17))                 # optional -- requires Macaulay2 
    4545    sage: S                                                     # optional 
    46     Quotient of Polynomial Ring in x, y over Integer Ring by the ideal (x^2 + y^2, 17) 
     46    Quotient of Multivariate Polynomial Ring in x, y over Integer Ring by the ideal (x^2 + y^2, 17) 
    4747    sage: a^2 + b^2 == 0                                        # optional  
    4848    True 
     
    6868    sage: K.<zeta> = CyclotomicField(3) 
    6969    sage: R.<x,y,z> = K[]; R 
    70     Polynomial Ring in x, y, z over Cyclotomic Field of order 3 and degree 2 
     70    Multivariate Polynomial Ring in x, y, z over Cyclotomic Field of order 3 and degree 2 
    7171    sage: i = ideal(x - zeta*y + 1, x^3 - zeta*y^3); i 
    72     Ideal (x + (-zeta)*y + 1, x^3 + (-zeta)*y^3) of Polynomial Ring in x, y, z over Cyclotomic Field of order 3 and degree 2 
     72    Ideal (x + (-zeta)*y + 1, x^3 + (-zeta)*y^3) of Multivariate Polynomial Ring in x, y, z over Cyclotomic Field of order 3 and degree 2 
    7373    sage: i.groebner_basis() 
    7474    [x + (-zeta)*y + 1, 3*y^3 + (6*zeta + 3)*y^2 + (3*zeta - 3)*y - zeta - 2] 
    7575    sage: S = R.quotient(i); S 
    76     Quotient of Polynomial Ring in x, y, z over Cyclotomic Field of order 3 and degree 2 by the ideal (x + (-zeta)*y + 1, x^3 + (-zeta)*y^3) 
     76    Quotient of Multivariate Polynomial Ring in x, y, z over Cyclotomic Field of order 3 and degree 2 by the ideal (x + (-zeta)*y + 1, x^3 + (-zeta)*y^3) 
    7777    sage: S.0  - zeta*S.1 
    7878    -1 
     
    314314            sage: I = (p*q^2, y-z^2)*R 
    315315            sage: pd = I.complete_primary_decomposition(); pd 
    316             [(Ideal (z^2 + 1, y + 1) of Polynomial Ring in x, y, z over Rational Field, Ideal (z^2 + 1, y + 1) of Polynomial Ring in x, y, z over Rational Field), (Ideal (z^6 + 4*z^3 + 4, y - z^2) of Polynomial Ring in x, y, z over Rational Field, Ideal (z^3 + 2, y - z^2) of Polynomial Ring in x, y, z over Rational Field)] 
     316            [(Ideal (z^2 + 1, y + 1) of Multivariate Polynomial Ring in x, y, z over Rational Field, Ideal (z^2 + 1, y + 1) of Multivariate Polynomial Ring in x, y, z over Rational Field), (Ideal (z^6 + 4*z^3 + 4, y - z^2) of Multivariate Polynomial Ring in x, y, z over Rational Field, Ideal (z^3 + 2, y - z^2) of Multivariate Polynomial Ring in x, y, z over Rational Field)] 
    317317 
    318318            sage: I.complete_primary_decomposition(algorithm = 'gtz') 
    319             [(Ideal (z^2 + 1, y - z^2) of Polynomial Ring in x, y, z over Rational Field, Ideal (z^2 + 1, y - z^2) of Polynomial Ring in x, y, z over Rational Field), (Ideal (z^6 + 4*z^3 + 4, y - z^2) of Polynomial Ring in x, y, z over Rational Field, Ideal (z^3 + 2, y - z^2) of Polynomial Ring in x, y, z over Rational Field)] 
     319            [(Ideal (z^2 + 1, y - z^2) of Multivariate Polynomial Ring in x, y, z over Rational Field, Ideal (z^2 + 1, y - z^2) of Multivariate Polynomial Ring in x, y, z over Rational Field), (Ideal (z^6 + 4*z^3 + 4, y - z^2) of Multivariate Polynomial Ring in x, y, z over Rational Field, Ideal (z^3 + 2, y - z^2) of Multivariate Polynomial Ring in x, y, z over Rational Field)] 
    320320        """ 
    321321        try: 
     
    345345            sage: I = (p*q^2, y-z^2)*R 
    346346            sage: I.primary_decomposition()    
    347             [Ideal (z^2 + 1, y + 1) of Polynomial Ring in x, y, z over Rational Field, Ideal (z^6 + 4*z^3 + 4, y - z^2) of Polynomial Ring in x, y, z over Rational Field] 
     347            [Ideal (z^2 + 1, y + 1) of Multivariate Polynomial Ring in x, y, z over Rational Field, Ideal (z^6 + 4*z^3 + 4, y - z^2) of Multivariate Polynomial Ring in x, y, z over Rational Field] 
    348348 
    349349        """ 
     
    357357            sage: I = (p*q^2, y-z^2)*R 
    358358            sage: I.associated_primes() 
    359             [Ideal (y + 1, z^2 + 1) of Polynomial Ring in x, y, z over Rational Field, Ideal (z^2 - y, y*z + 2, y^2 + 2*z) of Polynomial Ring in x, y, z over Rational Field] 
     359            [Ideal (y + 1, z^2 + 1) of Multivariate Polynomial Ring in x, y, z over Rational Field, Ideal (z^2 - y, y*z + 2, y^2 + 2*z) of Multivariate Polynomial Ring in x, y, z over Rational Field] 
    360360        """ 
    361361        return [P for _,P in self.complete_primary_decomposition(algorithm)] 
     
    403403            sage: R.<a,b,c,d> = PolynomialRing(QQ, 4, order='lex') 
    404404            sage: I = sage.rings.ideal.Cyclic(R,4); I 
    405             Ideal (a + b + c + d, a*b + a*d + b*c + c*d, a*b*c + a*b*d + a*c*d + b*c*d, a*b*c*d - 1) of Polynomial Ring in a, b, c, d over Rational Field 
     405            Ideal (a + b + c + d, a*b + a*d + b*c + c*d, a*b*c + a*b*d + a*c*d + b*c*d, a*b*c*d - 1) of Multivariate Polynomial Ring in a, b, c, d over Rational Field 
    406406            sage: I._groebner_basis_using_singular() 
    407407            [c^2*d^6 - c^2*d^2 - d^4 + 1, c^3*d^2 + c^2*d^3 - c - d, b*d^4 - b + d^5 - d, b*c - b*d^5 + c^2*d^4 + c*d - d^6 - d^2, b^2 + 2*b*d + d^2, a + b + c + d] 
     
    447447            sage: R.<a,b,c,d> = PolynomialRing(QQ, 4, order='lex') 
    448448            sage: I = sage.rings.ideal.Cyclic(R,4); I 
    449             Ideal (a + b + c + d, a*b + a*d + b*c + c*d, a*b*c + a*b*d + a*c*d + b*c*d, a*b*c*d - 1) of Polynomial Ring in a, b, c, d over Rational Field 
     449            Ideal (a + b + c + d, a*b + a*d + b*c + c*d, a*b*c + a*b*d + a*c*d + b*c*d, a*b*c*d - 1) of Multivariate Polynomial Ring in a, b, c, d over Rational Field 
    450450            sage: I._groebner_basis_using_libsingular() 
    451451            [c^2*d^6 - c^2*d^2 - d^4 + 1, c^3*d^2 + c^2*d^3 - c - d, b*d^4 - b + d^5 - d, b*c - b*d^5 + c^2*d^4 + c*d - d^6 - d^2, b^2 + 2*b*d + d^2, a + b + c + d] 
     
    508508            sage: J = y*R 
    509509            sage: I.intersection(J) 
    510             Ideal (x*y) of Polynomial Ring in x, y over Rational Field 
     510            Ideal (x*y) of Multivariate Polynomial Ring in x, y over Rational Field 
    511511 
    512512        The following simple example illustrates that the product need not equal the intersection. 
     
    514514            sage: J = (y^2, x)*R 
    515515            sage: K = I.intersection(J); K 
    516             Ideal (y^2, x*y, x^2) of Polynomial Ring in x, y over Rational Field 
     516            Ideal (y^2, x*y, x^2) of Multivariate Polynomial Ring in x, y over Rational Field 
    517517            sage: IJ = I*J; IJ 
    518             Ideal (x^2*y^2, x^3, y^3, x*y) of Polynomial Ring in x, y over Rational Field 
     518            Ideal (x^2*y^2, x^3, y^3, x*y) of Multivariate Polynomial Ring in x, y over Rational Field 
    519519            sage: IJ == K 
    520520            False 
     
    540540            sage: I = (p*q^2, y-z^2)*R 
    541541            sage: I.minimal_associated_primes () 
    542             [Ideal (z^3 + 2, -z^2 + y) of Polynomial Ring in x, y, z over Rational Field, Ideal (z^2 + 1, -z^2 + y) of Polynomial Ring in x, y, z over Rational Field] 
     542            [Ideal (z^3 + 2, -z^2 + y) of Multivariate Polynomial Ring in x, y, z over Rational Field, Ideal (z^2 + 1, -z^2 + y) of Multivariate Polynomial Ring in x, y, z over Rational Field] 
    543543         
    544544        ALGORITHM: Uses Singular. 
     
    559559            sage: I = (x^2, y^3, (x*z)^4 + y^3 + 10*x^2)*R 
    560560            sage: I.radical() 
    561             Ideal (y, x) of Polynomial Ring in x, y, z over Rational Field 
     561            Ideal (y, x) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    562562             
    563563        That the radical is correct is clear from the Groebner basis. 
     
    569569            sage: I = (p*q^2, y-z^2)*R 
    570570            sage: I.radical() 
    571             Ideal (z^2 - y, y^2*z + y*z + 2*y + 2) of Polynomial Ring in x, y, z over Rational Field 
     571            Ideal (z^2 - y, y^2*z + y*z + 2*y + 2) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    572572 
    573573        \note{(From Singular manual) A combination of the algorithms 
     
    579579            sage: I = (p*q^2, y - z^2)*R 
    580580            sage: I.radical() 
    581             Ideal (z^2 - y, y^2*z + y*z + 2*y + 2) of Polynomial Ring in x, y, z over Finite Field of size 37 
     581            Ideal (z^2 - y, y^2*z + y*z + 2*y + 2) of Multivariate Polynomial Ring in x, y, z over Finite Field of size 37 
    582582        """ 
    583583        S = self.ring() 
     
    793793           sage: J = Ideal(I.transformed_basis('fglm',S)) 
    794794           sage: J 
    795            Ideal (y^4 + y^3, x*y^3 - y^3, x^2 + y^3, z^4 + y^3 - y) of Polynomial Ring in z, x, y over Rational Field 
     795           Ideal (y^4 + y^3, x*y^3 - y^3, x^2 + y^3, z^4 + y^3 - y) of Multivariate Polynomial Ring in z, x, y over Rational Field 
    796796           sage: # example from the Singular manual page of gwalk 
    797797           sage: R.<z,y,x>=PolynomialRing(GF(32003),3,order='lex') 
     
    844844            sage: I = R * [x-t,y-t^2,z-t^3,s-x+y^3] 
    845845            sage: I.elimination_ideal([t,s]) 
    846             Ideal (y^2 - x*z, x*y - z, x^2 - y) of Polynomial Ring in x, y, t, s, z over Rational Field 
     846            Ideal (y^2 - x*z, x*y - z, x^2 - y) of Multivariate Polynomial Ring in x, y, t, s, z over Rational Field 
    847847 
    848848        ALGORITHM: Uses SINGULAR 
     
    904904        sage: I = ideal(x*y-z^2, y^2-w^2)       # optional 
    905905        sage: I                                 # optional 
    906         Ideal (x*y - z^2, y^2 - w^2) of Polynomial Ring in x, y, z, w over Integer Ring 
     906        Ideal (x*y - z^2, y^2 - w^2) of Multivariate Polynomial Ring in x, y, z, w over Integer Ring 
    907907    """ 
    908908    #def __init__(self, ring, gens, coerce=True): 
     
    10041004            sage: R.<x,y> = PolynomialRing(IntegerRing(), 2, order='lex') 
    10051005            sage: R.ideal([x, y]) 
    1006             Ideal (x, y) of Polynomial Ring in x, y over Integer Ring 
     1006            Ideal (x, y) of Multivariate Polynomial Ring in x, y over Integer Ring 
    10071007            sage: R.<x0,x1> = GF(3)[] 
    10081008            sage: R.ideal([x0^2, x1^3]) 
    1009             Ideal (x0^2, x1^3) of Polynomial Ring in x0, x1 over Finite Field of size 3 
     1009            Ideal (x0^2, x1^3) of Multivariate Polynomial Ring in x0, x1 over Finite Field of size 3 
    10101010        """ 
    10111011        Ideal_generic.__init__(self, ring, gens, coerce=coerce) 
  • sage/rings/polynomial/multi_polynomial_libsingular.pyx

    r6605 r6606  
    153153            sage: P.<x,y,z> = QQ[] 
    154154            sage: P 
    155             Polynomial Ring in x, y, z over Rational Field 
     155            Multivariate Polynomial Ring in x, y, z over Rational Field 
    156156 
    157157            sage: f = 27/113 * x^2 + y*z + 1/2; f 
     
    163163            sage: P = MPolynomialRing(GF(127),3,names='abc', order='lex') 
    164164            sage: P 
    165             Polynomial Ring in a, b, c over Finite Field of size 127 
     165            Multivariate Polynomial Ring in a, b, c over Finite Field of size 127 
    166166 
    167167            sage: a,b,c = P.gens() 
     
    564564            sage: P.<x,y> = QQ[] 
    565565            sage: P 
    566             Polynomial Ring in x, y over Rational Field 
     566            Multivariate Polynomial Ring in x, y over Rational Field 
    567567 
    568568        """ 
    569569        varstr = ", ".join([ rRingVar(i,self._ring)  for i in range(self.__ngens) ]) 
    570         return "Polynomial Ring in %s over %s"%(varstr,self._base) 
     570        return "Multivariate Polynomial Ring in %s over %s"%(varstr,self._base) 
    571571 
    572572    def ngens(self): 
     
    653653            sage: P.<x,y,z> = QQ[] 
    654654            sage: sage.rings.ideal.Katsura(P) 
    655             Ideal (x + 2*y + 2*z - 1, x^2 + 2*y^2 + 2*z^2 - x, 2*x*y + 2*y*z - y) of Polynomial Ring in x, y, z over Rational Field 
     655            Ideal (x + 2*y + 2*z - 1, x^2 + 2*y^2 + 2*z^2 - x, 2*x*y + 2*y*z - y) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    656656 
    657657            sage: P.ideal([x + 2*y + 2*z-1, 2*x*y + 2*y*z-y, x^2 + 2*y^2 + 2*z^2-x]) 
    658             Ideal (x + 2*y + 2*z - 1, 2*x*y + 2*y*z - y, x^2 + 2*y^2 + 2*z^2 - x) of Polynomial Ring in x, y, z over Rational Field 
     658            Ideal (x + 2*y + 2*z - 1, 2*x*y + 2*y*z - y, x^2 + 2*y^2 + 2*z^2 - x) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    659659 
    660660        """ 
     
    873873            sage: P.<x,y,z> = QQ[] 
    874874            sage: hash(P) 
    875             -6257278808099690586 # 64-bit 
     875            967902441410893180 # 64-bit 
    876876            -1767675994 # 32-bit 
    877877        """ 
     
    16241624            sage: f = (x + y)/3 
    16251625            sage: f.parent() 
    1626             Polynomial Ring in x, y over Rational Field 
     1626            Multivariate Polynomial Ring in x, y over Rational Field 
    16271627 
    16281628        Note that / is still a constructor for elements of the 
     
    16371637            (x^3 + y)/x 
    16381638            sage: h.parent() 
    1639             Fraction Field of Polynomial Ring in x, y over Rational Field 
     1639            Fraction Field of Multivariate Polynomial Ring in x, y over Rational Field 
    16401640 
    16411641        TESTS: 
     
    21102110 
    21112111            sage: R.<x> = MPolynomialRing(GF(7),1); R 
    2112             Polynomial Ring in x over Finite Field of size 7 
     2112            Multivariate Polynomial Ring in x over Finite Field of size 7 
    21132113            sage: f = 5*x^2 + 3; f 
    21142114            -2*x^2 + 3 
     
    21762176            2 
    21772177            sage: c.parent() 
    2178             Polynomial Ring in x, y over Rational Field 
     2178            Multivariate Polynomial Ring in x, y over Rational Field 
    21792179            sage: c in P 
    21802180            True 
     
    22022202            sage: R.<x,y> = MPolynomialRing(GF(389),2) 
    22032203            sage: parent(R(x*y+5).coefficient(R(1))) 
    2204             Polynomial Ring in x, y over Finite Field of size 389 
     2204            Multivariate Polynomial Ring in x, y over Finite Field of size 389 
    22052205        """ 
    22062206        cdef poly *p = self._poly 
     
    23422342            5*x*y^10 + x^2*z^9 + y*z^10 + z^11 
    23432343            sage: g.parent() 
    2344             Polynomial Ring in x, y, z over Rational Field 
     2344            Multivariate Polynomial Ring in x, y, z over Rational Field 
    23452345            sage: f.homogenize(x) 
    23462346            2*x^11 + x^10*y + 5*x*y^10 
  • sage/rings/polynomial/multi_polynomial_ring.py

    r6382 r6606  
    151151    EXAMPLES: 
    152152        sage: R = MPolynomialRing(Integers(12), 'x', 5); R 
    153         Polynomial Ring in x0, x1, x2, x3, x4 over Ring of integers modulo 12 
     153        Multivariate Polynomial Ring in x0, x1, x2, x3, x4 over Ring of integers modulo 12 
    154154        sage.: loads(R.dumps()) == R     # TODO -- this currently hangs sometimes (??) 
    155155        True 
     
    210210            -4*y^3 + x^2 
    211211            sage: parent(f) 
    212             Polynomial Ring in x, y over Rational Field 
     212            Multivariate Polynomial Ring in x, y over Rational Field 
    213213            sage: parent(S(f)) 
    214             Polynomial Ring in x, y over Integer Ring 
     214            Multivariate Polynomial Ring in x, y over Integer Ring 
    215215 
    216216        We coerce from the finite field. 
     
    218218            3*y^3 + x^2 
    219219            sage: parent(f) 
    220             Polynomial Ring in x, y over Rational Field 
     220            Multivariate Polynomial Ring in x, y over Rational Field 
    221221 
    222222        We dump and load a the polynomial ring S: 
     
    248248            <type 'sage.rings.polynomial.multi_polynomial_libsingular.MPolynomial_libsingular'> 
    249249            sage: parent(f) 
    250             Polynomial Ring in x, y, z over Rational Field 
     250            Multivariate Polynomial Ring in x, y, z over Rational Field 
    251251 
    252252        A more complicated symbolic and computational mix.  Behind the scenes 
     
    256256            (-z^3 + y^3 + x^3)^10 
    257257            sage: g = R(f); parent(g) 
    258             Polynomial Ring in x, y, z over Rational Field 
     258            Multivariate Polynomial Ring in x, y, z over Rational Field 
    259259            sage: (f - g).expand() 
    260260            0 
  • sage/rings/polynomial/multi_polynomial_ring_generic.pyx

    r6592 r6606  
    173173 
    174174    def _repr_(self): 
    175         return "Polynomial Ring in %s over %s"%(", ".join(self.variable_names()), self.base_ring()) 
     175        return "Multivariate Polynomial Ring in %s over %s"%(", ".join(self.variable_names()), self.base_ring()) 
    176176 
    177177    def repr_long(self): 
  • sage/rings/polynomial/polynomial_ring.py

    r6428 r6606  
    123123        False 
    124124        sage: R = PolynomialRing(ZZ,1,'w'); R 
    125         Polynomial Ring in w over Integer Ring 
     125        Multivariate Polynomial Ring in w over Integer Ring 
    126126        sage: is_PolynomialRing(R) 
    127127        False     
     
    467467        Univariate Polynomial Ring in x over Integer Ring 
    468468        sage: R.extend_variables('y, z') 
    469         Polynomial Ring in x, y, z over Integer Ring 
     469        Multivariate Polynomial Ring in x, y, z over Integer Ring 
    470470        sage: R.extend_variables(('y', 'z')) 
    471         Polynomial Ring in x, y, z over Integer Ring 
     471        Multivariate Polynomial Ring in x, y, z over Integer Ring 
    472472        """ 
    473473        if isinstance(added_names, str): 
     
    10621062        x^2 + 2*x*y + y^2 + 2*x*z + 2*y*z + z^2 
    10631063        sage: parent(x) 
    1064         Polynomial Ring in x, y, z over Rational Field 
     1064        Multivariate Polynomial Ring in x, y, z over Rational Field 
    10651065        sage: t = polygens(QQ,['x','yz','abc']) 
    10661066        sage: t 
  • sage/rings/polynomial/polynomial_ring_constructor.py

    r5371 r6606  
    8484        EXAMPLES of VARIABLE NAME CONTEXT: 
    8585            sage: R.<x,y> = PolynomialRing(QQ,2); R 
    86             Polynomial Ring in x, y over Rational Field 
     86            Multivariate Polynomial Ring in x, y over Rational Field 
    8787            sage: f = x^2 - 2*y^2 
    8888 
     
    158158    2. PolynomialRing(base_ring, names,   order='degrevlex'): 
    159159        sage: R = PolynomialRing(QQ, 'a,b,c'); R 
    160         Polynomial Ring in a, b, c over Rational Field 
     160        Multivariate Polynomial Ring in a, b, c over Rational Field 
    161161 
    162162        sage: S = PolynomialRing(QQ, ['a','b','c']); S 
    163         Polynomial Ring in a, b, c over Rational Field 
     163        Multivariate Polynomial Ring in a, b, c over Rational Field 
    164164 
    165165        sage: T = PolynomialRing(QQ, ('a','b','c')); T 
    166         Polynomial Ring in a, b, c over Rational Field 
     166        Multivariate Polynomial Ring in a, b, c over Rational Field 
    167167 
    168168    All three rings are identical. 
     
    172172    There is a unique polynomial ring with each term order: 
    173173        sage: R = PolynomialRing(QQ, 'x,y,z', order='degrevlex'); R 
    174         Polynomial Ring in x, y, z over Rational Field 
     174        Multivariate Polynomial Ring in x, y, z over Rational Field 
    175175        sage: S = PolynomialRing(QQ, 'x,y,z', order='revlex'); S 
    176         Polynomial Ring in x, y, z over Rational Field 
     176        Multivariate Polynomial Ring in x, y, z over Rational Field 
    177177        sage: S is PolynomialRing(QQ, 'x,y,z', order='revlex') 
    178178        True 
     
    186186    variables, then variables labeled with numbers are created. 
    187187        sage: PolynomialRing(QQ, 'x', 10) 
    188         Polynomial Ring in x0, x1, x2, x3, x4, x5, x6, x7, x8, x9 over Rational Field 
     188        Multivariate Polynomial Ring in x0, x1, x2, x3, x4, x5, x6, x7, x8, x9 over Rational Field 
    189189         
    190190        sage: PolynomialRing(GF(7), 'y', 5) 
    191         Polynomial Ring in y0, y1, y2, y3, y4 over Finite Field of size 7 
     191        Multivariate Polynomial Ring in y0, y1, y2, y3, y4 over Finite Field of size 7 
    192192 
    193193        sage: PolynomialRing(QQ, 'y', 3, sparse=True) 
    194         Polynomial Ring in y0, y1, y2 over Rational Field 
     194        Multivariate Polynomial Ring in y0, y1, y2 over Rational Field 
    195195 
    196196    It is easy in Python to create fairly aribtrary variable names. 
     
    199199 
    200200        sage: R = PolynomialRing(ZZ, ['x%s'%p for p in primes(100)]); R 
    201         Polynomial Ring in x2, x3, x5, x7, x11, x13, x17, x19, x23, x29, x31, x37, x41, x43, x47, x53, x59, x61, x67, x71, x73, x79, x83, x89, x97 over Integer Ring 
     201        Multivariate Polynomial Ring in x2, x3, x5, x7, x11, x13, x17, x19, x23, x29, x31, x37, x41, x43, x47, x53, x59, x61, x67, x71, x73, x79, x83, x89, x97 over Integer Ring 
    202202 
    203203    By calling the \code{inject_variables()} method all those variable 
     
    210210    You can also call \code{injvar}, which is a convenient shortcut for \code{inject_variables()}. 
    211211        sage: R = PolynomialRing(GF(7),15,'w'); R 
    212         Polynomial Ring in w0, w1, w2, w3, w4, w5, w6, w7, w8, w9, w10, w11, w12, w13, w14 over Finite Field of size 7         
     212        Multivariate Polynomial Ring in w0, w1, w2, w3, w4, w5, w6, w7, w8, w9, w10, w11, w12, w13, w14 over Finite Field of size 7         
    213213        sage: R.injvar() 
    214214        Defining w0, w1, w2, w3, w4, w5, w6, w7, w8, w9, w10, w11, w12, w13, w14 
  • sage/rings/polynomial/toy_buchberger.py

    r5619 r6606  
    6161 
    6262    sage: I 
    63     Ideal (a + 2*b + 2*c - 1, a^2 + 2*b^2 + 2*c^2 - a, 2*a*b + 2*b*c - b) of Polynomial Ring in a, b, c over Finite Field of size 127 
     63    Ideal (a + 2*b + 2*c - 1, a^2 + 2*b^2 + 2*c^2 - a, 2*a*b + 2*b*c - b) of Multivariate Polynomial Ring in a, b, c over Finite Field of size 127 
    6464 
    6565    The original Buchberger algorithm performs 15 useless reductions to zero for this example: 
  • sage/rings/quotient_ring.py

    r6383 r6606  
    8686        sage: T.<c,d> = S.quo(a) 
    8787        sage: T 
    88         Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x, y^2 + 1) 
     88        Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x, y^2 + 1) 
    8989        sage: T.gens() 
    9090        (0, d) 
     
    139139            sage: l = pi.lift(); l 
    140140            Set-theoretic ring morphism: 
    141               From: Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^2, y^2) 
    142               To:   Polynomial Ring in x, y over Rational Field 
     141              From: Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^2, y^2) 
     142              To:   Multivariate Polynomial Ring in x, y over Rational Field 
    143143              Defn: Choice of lifting map 
    144144            sage: l(x+y^3) 
     
    164164            sage: pi = S.cover(); pi 
    165165            Ring morphism: 
    166               From: Polynomial Ring in x, y over Rational Field 
    167               To:   Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
     166              From: Multivariate Polynomial Ring in x, y over Rational Field 
     167              To:   Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
    168168              Defn: Natural quotient map 
    169169            sage: L = S.lift(); L 
    170170            Set-theoretic ring morphism: 
    171               From: Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
    172               To:   Polynomial Ring in x, y over Rational Field 
     171              From: Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
     172              To:   Multivariate Polynomial Ring in x, y over Rational Field 
    173173              Defn: Choice of lifting map 
    174174            sage: L(S.0) 
  • sage/rings/quotient_ring_element.py

    r4483 r6606  
    4747        sage: R.<x,y> = PolynomialRing(QQ, 2) 
    4848        sage: S = R.quo(x^2 + y^2); S 
    49         Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
     49        Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^2 + y^2) 
    5050        sage: S.gens() 
    5151        (xbar, ybar) 
  • sage/rings/ring.pyx

    r6375 r6606  
    6060            Univariate Polynomial Ring in abc over Finite Field of size 17 
    6161            sage: GF(17)['a,b,c'] 
    62             Polynomial Ring in a, b, c over Finite Field of size 17 
     62            Multivariate Polynomial Ring in a, b, c over Finite Field of size 17 
    6363 
    6464        We can also create power series rings (in one variable) by 
     
    165165            sage: R.<x,y> = QQ[] 
    166166            sage: R.ideal(x,y) 
    167             Ideal (x, y) of Polynomial Ring in x, y over Rational Field 
     167            Ideal (x, y) of Multivariate Polynomial Ring in x, y over Rational Field 
    168168            sage: R.ideal(x+y^2) 
    169             Ideal (y^2 + x) of Polynomial Ring in x, y over Rational Field 
     169            Ideal (y^2 + x) of Multivariate Polynomial Ring in x, y over Rational Field 
    170170            sage: R.ideal( [x^3,y^3+x^3] ) 
    171             Ideal (x^3, x^3 + y^3) of Polynomial Ring in x, y over Rational Field 
     171            Ideal (x^3, x^3 + y^3) of Multivariate Polynomial Ring in x, y over Rational Field 
    172172        """ 
    173173        C = self._ideal_class_() 
     
    184184            sage: R.<x,y,z> = GF(7)[] 
    185185            sage: (x+y)*R 
    186             Ideal (x + y) of Polynomial Ring in x, y, z over Finite Field of size 7 
     186            Ideal (x + y) of Multivariate Polynomial Ring in x, y, z over Finite Field of size 7 
    187187            sage: (x+y,z+y^3)*R 
    188             Ideal (x + y, y^3 + z) of Polynomial Ring in x, y, z over Finite Field of size 7 
     188            Ideal (x + y, y^3 + z) of Multivariate Polynomial Ring in x, y, z over Finite Field of size 7 
    189189        """ 
    190190        if isinstance(self, Ring): 
     
    207207            sage: R.<x,y> = ZZ[] 
    208208            sage: R.principal_ideal(x+2*y) 
    209             Ideal (x + 2*y) of Polynomial Ring in x, y over Integer Ring 
     209            Ideal (x + 2*y) of Multivariate Polynomial Ring in x, y over Integer Ring 
    210210        """ 
    211211        return self.ideal([gen], coerce=coerce) 
     
    602602            sage: R = Integers(389)['x,y'] 
    603603            sage: Frac(R) 
    604             Fraction Field of Polynomial Ring in x, y over Ring of integers modulo 389 
     604            Fraction Field of Multivariate Polynomial Ring in x, y over Ring of integers modulo 389 
    605605            sage: R.fraction_field() 
    606             Fraction Field of Polynomial Ring in x, y over Ring of integers modulo 389             
     606            Fraction Field of Multivariate Polynomial Ring in x, y over Ring of integers modulo 389             
    607607        """ 
    608608        if self.is_field(): 
     
    696696            sage: S.<a,b> = R.quotient((x^2, y)) 
    697697            sage: S 
    698             Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^2, y) 
     698            Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^2, y) 
    699699            sage: S.gens() 
    700700            (a, 0) 
     
    719719            sage: S.<a,b> = R.quo((x^2, y)) 
    720720            sage: S 
    721             Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x^2, y) 
     721            Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x^2, y) 
    722722            sage: S.gens() 
    723723            (a, 0) 
     
    949949            Rational Field 
    950950            sage: Frac(ZZ['x,y']).integral_closure() 
    951             Fraction Field of Polynomial Ring in x, y over Integer Ring 
     951            Fraction Field of Multivariate Polynomial Ring in x, y over Integer Ring 
    952952        """ 
    953953        return self 
  • sage/schemes/elliptic_curves/constructor.py

    r5772 r6606  
    8181        sage: R = ZZ['u', 'v'] 
    8282        sage: EllipticCurve(R, [1,1]) 
    83         Elliptic Curve defined by y^2  = x^3 + x +1 over Polynomial Ring in u, v 
     83        Elliptic Curve defined by y^2  = x^3 + x +1 over Multivariate Polynomial Ring in u, v 
    8484        over Integer Ring 
    8585    """ 
  • sage/schemes/generic/affine_space.py

    r3344 r6606  
    6464        Affine Space of dimension 2 over Rational Field 
    6565        sage: A.coordinate_ring() 
    66         Polynomial Ring in X, Y over Rational Field 
     66        Multivariate Polynomial Ring in X, Y over Rational Field 
    6767 
    6868    Use the divide operator for base extension. 
     
    253253        EXAMPLES: 
    254254            sage: R = AffineSpace(2, GF(9,'alpha'), 'z').coordinate_ring(); R 
    255             Polynomial Ring in z0, z1 over Finite Field in alpha of size 3^2 
     255            Multivariate Polynomial Ring in z0, z1 over Finite Field in alpha of size 3^2 
    256256            sage: AffineSpace(3, R, 'x').coordinate_ring() 
    257             Polynomial Ring in x0, x1, x2 over Polynomial Ring in z0, z1 over Finite Field in alpha of size 3^2 
     257            Multivariate Polynomial Ring in x0, x1, x2 over Multivariate Polynomial Ring in z0, z1 over Finite Field in alpha of size 3^2 
    258258        """ 
    259259        try: 
     
    345345            (x, y^2, x*y^2) 
    346346            sage: I = X.defining_ideal(); I 
    347             Ideal (x, y^2, x*y^2) of Polynomial Ring in x, y over Rational Field 
     347            Ideal (x, y^2, x*y^2) of Multivariate Polynomial Ring in x, y over Rational Field 
    348348            sage: I.groebner_basis() 
    349349            [x, y^2] 
  • sage/schemes/generic/divisor.py

    r4487 r6606  
    2222    3 
    2323    sage: D[1][1] 
    24     Ideal (x, y) of Polynomial Ring in x, y, z over Finite Field of size 5 
     24    Ideal (x, y) of Multivariate Polynomial Ring in x, y, z over Finite Field of size 5 
    2525    sage: C.divisor([(3, pts[0]), (-1, pts[1]), (10,pts[5])]) 
    2626    10*(x + 2*z, y + z) + 3*(x, y) - (x, z) 
  • sage/schemes/generic/morphism.py

    r6221 r6606  
    118118              X: Spectrum of Univariate Polynomial Ring in x over Rational Field 
    119119              Y: Spectrum of Univariate Polynomial Ring in y over Rational Field 
    120               U: Spectrum of Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
     120              U: Spectrum of Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
    121121               
    122122            sage: a, b = P1.gluing_maps() 
    123123            sage: a 
    124124            Affine Scheme morphism: 
    125              From: Spectrum of Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
     125             From: Spectrum of Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
    126126              To:   Spectrum of Univariate Polynomial Ring in x over Rational Field 
    127127              Defn: Ring morphism: 
    128128                      From: Univariate Polynomial Ring in x over Rational Field 
    129                       To:   Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
     129                      To:   Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
    130130                      Defn: x |--> xbar 
    131131            sage: b 
    132132            Affine Scheme morphism: 
    133               From: Spectrum of Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
     133              From: Spectrum of Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
    134134              To:   Spectrum of Univariate Polynomial Ring in y over Rational Field 
    135135              Defn: Ring morphism: 
    136136                      From: Univariate Polynomial Ring in y over Rational Field 
    137                       To:   Quotient of Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
     137                      To:   Quotient of Multivariate Polynomial Ring in x, y over Rational Field by the ideal (x*y - 1) 
    138138                      Defn: y |--> ybar 
    139139        """ 
  • sage/schemes/generic/projective_space.py

    r4482 r6606  
    2929    Projective Space of dimension 2 over Rational Field 
    3030    sage: x.parent() 
    31     Polynomial Ring in x, y, z over Rational Field 
     31    Multivariate Polynomial Ring in x, y, z over Rational Field 
    3232     
    3333For example, we use $x,y,z$ to define the intersection of two lines. 
     
    8686        Projective Space of dimension 2 over Rational Field 
    8787        sage: P.coordinate_ring() 
    88         Polynomial Ring in X, Y, Z over Rational Field 
     88        Multivariate Polynomial Ring in X, Y, Z over Rational Field 
    8989 
    9090    The divide operator does base extension. 
     
    101101        Projective Space of dimension 2 over Finite Field of size 7 
    102102        sage: P.coordinate_ring() 
    103         Polynomial Ring in x, y, z over Finite Field of size 7 
     103        Multivariate Polynomial Ring in x, y, z over Finite Field of size 7 
    104104        sage: P.coordinate_ring() is R 
    105105        True 
     
    144144          Defn: Structure map 
    145145        sage: X.coordinate_ring() 
    146         Polynomial Ring in x, y, z, w over Rational Field 
     146        Multivariate Polynomial Ring in x, y, z, w over Rational Field 
    147147 
    148148    Loading and saving: 
     
    172172        EXAMPLES: 
    173173            sage: ProjectiveSpace(3, GF(19^2,'alpha'), 'abcd').coordinate_ring() 
    174             Polynomial Ring in a, b, c, d over Finite Field in alpha of size 19^2 
     174            Multivariate Polynomial Ring in a, b, c, d over Finite Field in alpha of size 19^2 
    175175             
    176176            sage: ProjectiveSpace(3).coordinate_ring() 
    177             Polynomial Ring in x0, x1, x2, x3 over Integer Ring 
     177            Multivariate Polynomial Ring in x0, x1, x2, x3 over Integer Ring 
    178178             
    179179            sage: ProjectiveSpace(2, QQ, ['alpha', 'beta', 'gamma']).coordinate_ring() 
    180             Polynomial Ring in alpha, beta, gamma over Rational Field 
     180            Multivariate Polynomial Ring in alpha, beta, gamma over Rational Field 
    181181        """ 
    182182        try: 
     
    240240            (x*z^2, y^2*z, x*y^2) 
    241241            sage: I = X.defining_ideal(); I 
    242             Ideal (x*z^2, y^2*z, x*y^2) of Polynomial Ring in x, y, z over Rational Field 
     242            Ideal (x*z^2, y^2*z, x*y^2) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    243243            sage: I.groebner_basis() 
    244244            [x*z^2, y^2*z, x*y^2] 
  • sage/schemes/generic/spec.py

    r4851 r6606  
    3939        Spectrum of Univariate Polynomial Ring in x over Rational Field 
    4040        sage: Spec(PolynomialRing(QQ, 'x', 3)) 
    41         Spectrum of Polynomial Ring in x0, x1, x2 over Rational Field 
     41        Spectrum of Multivariate Polynomial Ring in x0, x1, x2 over Rational Field 
    4242        sage: X = Spec(PolynomialRing(GF(49,'a'), 3, 'x')); X 
    43         Spectrum of Polynomial Ring in x0, x1, x2 over Finite Field in a of size 7^2 
     43        Spectrum of Multivariate Polynomial Ring in x0, x1, x2 over Finite Field in a of size 7^2 
    4444        sage: loads(X.dumps()) == X 
    4545        True 
     
    121121            Rational Field 
    122122            sage: Spec(PolynomialRing(QQ,3, 'x')).coordinate_ring() 
    123             Polynomial Ring in x0, x1, x2 over Rational Field 
     123            Multivariate Polynomial Ring in x0, x1, x2 over Rational Field 
    124124        """ 
    125125        return self.__R 
  • sage/schemes/plane_curves/constructor.py

    r4482 r6606  
    110110        0 
    111111        sage: I = X.defining_ideal(); I 
    112         Ideal (x^3 + y^3 + z^3, x^4 + y^4 + z^4) of Polynomial Ring in x, y, z over Rational Field 
     112        Ideal (x^3 + y^3 + z^3, x^4 + y^4 + z^4) of Multivariate Polynomial Ring in x, y, z over Rational Field 
    113113 
    114114    EXAMPLE: In three variables, the defining equation must be homogeneous. 
  • sage/structure/coerce.pyx

    r6418 r6606  
    186186        t + x + zeta13 
    187187        sage: f.parent() 
    188         Polynomial Ring in t, x over Cyclotomic Field of order 13 and degree 12 
     188        Multivariate Polynomial Ring in t, x over Cyclotomic Field of order 13 and degree 12 
    189189        sage: ZZ['x','y'].0 + ~Frac(QQ['y']).0 
    190190        (x*y + 1)/y 
     
    195195        w + x 
    196196        sage: f.parent() 
    197         Polynomial Ring in w, x, y, z, a over Rational Field 
     197        Multivariate Polynomial Ring in w, x, y, z, a over Rational Field 
    198198        sage: ZZ['x,y,z'].0 + ZZ['w,x,z,a'].1 
    199199        2*x 
  • sage/structure/parent.pyx

    r6377 r6606  
    576576            sage: R.<x,y> = PolynomialRing(QQ, 2) 
    577577            sage: R.Hom(QQ) 
    578             Set of Homomorphisms from Polynomial Ring in x, y over Rational Field to Rational Field 
     578            Set of Homomorphisms from Multivariate Polynomial Ring in x, y over Rational Field to Rational Field 
    579579 
    580580        Homspaces are defined for very general \sage objects, even elements of familiar rings. 
  • sage/structure/parent_base.pyx

    r5571 r6606  
    369369            sage: R.<x,y> = PolynomialRing(QQ, 2) 
    370370            sage: R.Hom(QQ) 
    371             Set of Homomorphisms from Polynomial Ring in x, y over Rational Field to Rational Field 
     371            Set of Homomorphisms from Multivariate Polynomial Ring in x, y over Rational Field to Rational Field 
    372372 
    373373        Homspaces are defined for very general \sage objects, even elements of familiar rings. 
  • sage/structure/parent_gens.pyx

    r6570 r6606  
    242242            sage: R, vars = MPolynomialRing(QQ,3, 'x').objgens() 
    243243            sage: R 
    244             Polynomial Ring in x0, x1, x2 over Rational Field 
     244            Multivariate Polynomial Ring in x0, x1, x2 over Rational Field 
    245245            sage: vars 
    246246            (x0, x1, x2) 
     
    309309         
    310310            sage: R = QQ['x,y,abc']; R 
    311             Polynomial Ring in x, y, abc over Rational Field 
     311            Multivariate Polynomial Ring in x, y, abc over Rational Field 
    312312            sage: R.2 
    313313            abc 
Note: See TracChangeset for help on using the changeset viewer.