Polynomials

A polynomial is an expression made up of variables and constants, combined using only addition, subtraction, and multiplication (no division by variables).

General Form:

P(x)=anxn+an1xn1++a1x+a0P(x) = a_nx^n + a_{n-1}x^{n-1} + \ldots + a_1x + a_0

Where:

  • an,an1,,a0a_n, a_{n-1}, \ldots, a_0 are real coefficients
  • xx is a variable
  • nn is a non-negative integer and an0a_n \ne 0
  • anxna_nx^n is the leading term
  • a0a_0 is the constant term

Classification Based on Degree

DegreeTypeExample
0Constant77
1Linearx+2x + 2
2Quadratic3x25x+13x^2 - 5x + 1
3Cubicx3+4x2x+6x^3 + 4x^2 - x + 6
4Bi-quadratic2x4+3x252x^4 + 3x^2 - 5
nnnn-degree Polynomial5xn+5x^n + \ldots

Types of Polynomials Based on Terms

NameNumber of TermsExample
Monomial13x3x
Binomial2x24x^2 - 4
Trinomial3x2+x+1x^2 + x + 1
MultinomialMore than 3x3+2x2x+5x^3 + 2x^2 - x + 5

Operations on Polynomials

Addition & Subtraction

  • Combine like terms

  • Example:

    (3x2+2x1)+(4x23x+5)=7x2x+4(3x^2 + 2x - 1) + (4x^2 - 3x + 5) = 7x^2 - x + 4

Multiplication

  • Use distributive property or identity formulas

  • Example:

    (x+2)(x3)=x2x6(x + 2)(x - 3) = x^2 - x - 6

Division

  • Long division or synthetic division (for special cases)

Identities to Remember

Algebraic Identities

(a+b)2=a2+2ab+b2(ab)2=a22ab+b2a2b2=(ab)(a+b)(a+b)3=a3+3a2b+3ab2+b3(ab)3=a33a2b+3ab2b3(a + b)^2 = a^2 + 2ab + b^2 \\ (a - b)^2 = a^2 - 2ab + b^2 \\ a^2 - b^2 = (a - b)(a + b) \\ (a + b)^3 = a^3 + 3a^2b + 3ab^2 + b^3 \\ (a - b)^3 = a^3 - 3a^2b + 3ab^2 - b^3

Factorization Identities

x2+(a+b)x+ab=(x+a)(x+b)x3+y3=(x+y)(x2xy+y2)x3y3=(xy)(x2+xy+y2)x^2 + (a + b)x + ab = (x + a)(x + b) \\ x^3 + y^3 = (x + y)(x^2 - xy + y^2) \\ x^3 - y^3 = (x - y)(x^2 + xy + y^2)

Remainder Theorem

If a polynomial f(x)f(x) is divided by (xa)(x - a), the remainder is:

f(a)f(a)

Shortcut: To find the remainder when f(x)f(x) is divided by xax - a, just plug in aa into the polynomial.


Factor Theorem

If f(a)=0f(a) = 0, then (xa)(x - a) is a factor of f(x)f(x).

So, to test if x2x - 2 is a factor, plug in x=2x = 2. If f(2)=0f(2) = 0, it’s a factor.


Graphical Understanding

The degree of the polynomial tells us how many turns or bends the graph can have:

  • Linear: straight line
  • Quadratic: parabola (1 bend)
  • Cubic: S-shape (up to 2 bends)

Roots of the polynomial are the points where the graph intersects the x-axis.


Important Terms

TermMeaning
Root / ZeroValue of xx where f(x)=0f(x) = 0
DegreeHighest power of the variable
CoefficientMultiplier of a term
Leading CoefficientCoefficient of the highest degree term
Constant TermTerm with no variable
FactorA binomial that divides the polynomial exactly

Common Conceptual Mistakes

MistakeTip
Forgetting to arrange in descending powersAlways write in standard form
Ignoring signs during addition/subtractionTrack signs while combining like terms
Wrong identity usageDouble-check before applying formulas
Skipping remainder/factor checkUse remainder theorem for quick verification

Example 1: Remainder Theorem

Find the remainder when f(x)=x34x+1f(x) = x^3 - 4x + 1 is divided by x2x - 2

f(2)=88+1=1Remainder=1f(2) = 8 - 8 + 1 = 1 \Rightarrow \text{Remainder} = 1

Example 2: Factor Theorem

If f(x)=x37x+6f(x) = x^3 - 7x + 6, check if x1x - 1 is a factor.

f(1)=17+6=0Yes, it’s a factorf(1) = 1 - 7 + 6 = 0 \Rightarrow \text{Yes, it's a factor}

Example 3: Polynomial Division

Divide x3+3x2+3x+1x^3 + 3x^2 + 3x + 1 by x+1x + 1

Using long division or observation:

(x+1)3=x3+3x2+3x+1Quotient=x2+2x+1(x + 1)^3 = x^3 + 3x^2 + 3x + 1 \Rightarrow \text{Quotient} = x^2 + 2x + 1

Example 4: Word Problem

A polynomial f(x)f(x) when divided by x2x - 2 gives remainder 3. What is f(2)f(2)?

By remainder theorem,

f(2)=3f(2) = 3

Bonus Tips

  • Always arrange polynomials in decreasing order of degree before any operation
  • Use identities as shortcuts to save time in exams
  • Factor theorems are often hidden in number-based puzzles in aptitude