You have 3 free guides left 😟
Unlock your guides
You have 3 free guides left 😟
Unlock your guides

Polynomial rings are the backbone of field theory, forming a crucial link between abstract algebra and concrete equations. They provide a structured way to work with polynomials, offering tools to analyze their properties and relationships.

Irreducible polynomials play a starring role in this mathematical drama. Like prime numbers in integer arithmetic, they're the building blocks of polynomial . Understanding them is key to solving complex equations and constructing new fields.

Polynomial rings and properties

Definition and notation

Top images from around the web for Definition and notation
Top images from around the web for Definition and notation
  • denoted as R[x]R[x] set of all polynomials with coefficients from a ring RR
  • Coefficients come from a ring RR (integers, real numbers, complex numbers)
  • Examples of polynomial rings: Z[x]\mathbb{Z}[x] (integers), R[x]\mathbb{R}[x] (real numbers), C[x]\mathbb{C}[x] (complex numbers)

Algebraic properties

  • Polynomial rings are commutative rings satisfy commutative property of and
    • f(x)+g(x)=g(x)+f(x)f(x) + g(x) = g(x) + f(x)
    • f(x)g(x)=g(x)f(x)f(x) \cdot g(x) = g(x) \cdot f(x)
  • Polynomial rings have a unity element 11
  • Polynomial rings are integral domains if the coefficient ring RR is an
    • No zero divisors: if f(x)g(x)=0f(x) \cdot g(x) = 0, then either f(x)=0f(x) = 0 or g(x)=0g(x) = 0
    • Example: Z[x]\mathbb{Z}[x] is an integral domain, but Z6[x]\mathbb{Z}_6[x] (integers modulo 6) is not

Degree and leading coefficient

  • of a polynomial highest power of the variable in the polynomial
    • Example: f(x)=3x4+2x25f(x) = 3x^4 + 2x^2 - 5 has degree 4
  • coefficient of the highest degree term
    • Example: In f(x)=3x4+2x25f(x) = 3x^4 + 2x^2 - 5, the leading coefficient is 3
  • Zero polynomial has degree -\infty by convention
  • Constant polynomials have degree 0

Irreducible polynomials

Definition and properties

  • cannot be factored into the product of two non-constant polynomials over a given field
  • Analogous to prime numbers in the integers
  • Example: [x^2 + 1](https://www.fiveableKeyTerm:x^2_+_1) is irreducible over R\mathbb{R}, but reducible over C\mathbb{C} as (x+i)(xi)(x + i)(x - i)
  • Irreducibility depends on the field being considered

Irreducibility over specific fields

  • Over the field of real numbers R\mathbb{R}, a polynomial is irreducible if and only if it is:
    • Linear (degree 1)
    • Quadratic (degree 2) with a negative discriminant (b24ac<0b^2 - 4ac < 0)
  • Over the field of complex numbers C\mathbb{C}, every polynomial of degree greater than 0 is reducible
    • Fundamental Theorem of Algebra: every non-constant polynomial has a in C\mathbb{C}
  • sufficient condition for a polynomial to be irreducible over the field of rational numbers Q\mathbb{Q}
    • If f(x)=anxn+an1xn1++a1x+a0f(x) = a_nx^n + a_{n-1}x^{n-1} + \cdots + a_1x + a_0 with integer coefficients, and there exists a prime pp such that:
      • pp divides a0,a1,,an1a_0, a_1, \ldots, a_{n-1}
      • pp does not divide ana_n
      • p2p^2 does not divide a0a_0
    • Then f(x)f(x) is irreducible over Q\mathbb{Q}
    • Example: f(x)=x3+3x+6f(x) = x^3 + 3x + 6 is irreducible over Q\mathbb{Q} by Eisenstein's criterion with p=3p = 3
  • The polynomial xpxx^p - x is irreducible over the field of integers modulo pp, where pp is a prime number
    • Used in the construction of finite fields

Polynomial arithmetic

Addition and subtraction

  • Polynomial addition performed by adding the coefficients of like terms
    • Example: (3x2+2x1)+(2x23x+4)=5x2x+3(3x^2 + 2x - 1) + (2x^2 - 3x + 4) = 5x^2 - x + 3
  • Polynomial subtraction performed by subtracting the coefficients of like terms
    • Example: (3x2+2x1)(2x23x+4)=x2+5x5(3x^2 + 2x - 1) - (2x^2 - 3x + 4) = x^2 + 5x - 5
  • Degree of the sum or difference of two polynomials is at most the maximum of the degrees of the individual polynomials

Multiplication

  • Polynomial multiplication performed by multiplying each term of one polynomial by each term of the other polynomial and then adding the like terms
    • Example: (3x+2)(2x1)=6x2+x2(3x + 2)(2x - 1) = 6x^2 + x - 2
  • Degree of the product of two polynomials is the sum of the degrees of the individual polynomials
    • deg(f(x)g(x))=deg(f(x))+deg(g(x))\deg(f(x) \cdot g(x)) = \deg(f(x)) + \deg(g(x))
  • Leading coefficient of the product of two polynomials is the product of the leading coefficients of the individual polynomials
    • LC(f(x)g(x))=LC(f(x))LC(g(x))LC(f(x) \cdot g(x)) = LC(f(x)) \cdot LC(g(x))
  • Multiplication of polynomials is commutative, associative, and distributive over addition

Polynomial division and GCD

Division algorithm

  • algorithm for polynomials: given two polynomials f(x)f(x) and g(x)g(x) with g(x)0g(x) \neq 0, there exist unique polynomials q(x)q(x) (quotient) and r(x)r(x) (remainder) such that:
    • f(x)=g(x)q(x)+r(x)f(x) = g(x)q(x) + r(x)
    • deg(r(x))<deg(g(x))\deg(r(x)) < \deg(g(x))
  • Example: Dividing f(x)=x3+2x23x+1f(x) = x^3 + 2x^2 - 3x + 1 by g(x)=x2+1g(x) = x^2 + 1 gives:
    • q(x)=x+1q(x) = x + 1 and r(x)=x+2r(x) = x + 2
    • f(x)=(x2+1)(x+1)+(x+2)f(x) = (x^2 + 1)(x + 1) + (x + 2)
  • Division algorithm is the basis for the Euclidean algorithm for finding the GCD of two polynomials

Greatest common divisor (GCD)

  • GCD of two polynomials polynomial of the highest degree that divides both polynomials without a remainder
  • GCD of two polynomials can be found using the Euclidean algorithm involves repeated application of the division algorithm
    • Example: GCD of f(x)=x33x+2f(x) = x^3 - 3x + 2 and g(x)=x21g(x) = x^2 - 1 is x1x - 1
  • If the GCD of two polynomials is 1, the polynomials are called relatively prime or coprime
  • Bézout's identity: if the GCD of two polynomials f(x)f(x) and g(x)g(x) is d(x)d(x), then there exist polynomials a(x)a(x) and b(x)b(x) such that:
    • a(x)f(x)+b(x)g(x)=d(x)a(x)f(x) + b(x)g(x) = d(x)
    • Example: For f(x)=x33x+2f(x) = x^3 - 3x + 2 and g(x)=x21g(x) = x^2 - 1 with d(x)=x1d(x) = x - 1, we have:
      • a(x)=xa(x) = -x and b(x)=x2x1b(x) = x^2 - x - 1
      • (x)(x33x+2)+(x2x1)(x21)=x1(-x)(x^3 - 3x + 2) + (x^2 - x - 1)(x^2 - 1) = x - 1
© 2024 Fiveable Inc. All rights reserved.
AP® and SAT® are trademarks registered by the College Board, which is not affiliated with, and does not endorse this website.


© 2024 Fiveable Inc. All rights reserved.
AP® and SAT® are trademarks registered by the College Board, which is not affiliated with, and does not endorse this website.

© 2024 Fiveable Inc. All rights reserved.
AP® and SAT® are trademarks registered by the College Board, which is not affiliated with, and does not endorse this website.
Glossary
Glossary