[Common Math 1 Part 9] Identities, Coefficient Comparison, and Undetermined Coefficients

한국어 버전

Our aim is clear:

Understand how identities relate to polynomial equality, then learn coefficient comparison and the method of undetermined coefficients built on top of that.

Key flow:

  • An identity holds for every allowed value.
  • A polynomial identity therefore means the two polynomials are actually the same expression.
  • Treat their difference as the zero polynomial and compare coefficients degree by degree.
  • That logic powers both coefficient comparison and the method of undetermined coefficients.

1. Identities vs. Polynomial Equality

1‑1. Equations vs. Identities

An equation may hold only for certain values. For example, x+3=7x + 3 = 7 is true only when x=4x = 4.

An identity holds for all permissible values. For polynomial identities, that means all real numbers. For example,

(x+1)2=x2+2x+1(x + 1)^2 = x^2 + 2x + 1

holds for every real value of xx.

1‑2. Why Polynomials Are Special

Suppose A(x)A(x) and B(x)B(x) agree for every xx: A(x)=B(x).A(x) = B(x). Then their difference P(x)=A(x)B(x)P(x) = A(x) - B(x) equals 0 for all xx.

Now focus on what that means. If P(c)=0P(c) = 0, then (xc)(x - c) is a factor of P(x)P(x) by the factor theorem. Since P(x)=0P(x) = 0 for every real number cc, the polynomial P(x)P(x) has infinitely many roots.

But a nonzero polynomial of degree nn can have at most nn roots. So the only polynomial that can be 0 for every xx is the zero polynomial, the polynomial whose coefficients are all 0.

Therefore A(x)B(x)A(x) - B(x) is the zero polynomial, so A(x)A(x) and B(x)B(x) must have the same coefficient at each degree.

1‑3. Core Statement

A polynomial identity collapses to polynomial equality.

In other words, if A(x)=B(x)A(x) = B(x) as an identity, then A(x)B(x)A(x) - B(x) is the zero polynomial and we can match coefficients at each degree.

This is why coefficient comparison works: it is not a trick. It follows from the fact that a polynomial identity forces the two sides to be the same polynomial.

1‑4. Why This Matters

Once we know two sides form a polynomial identity, one long equation turns into several smaller equations, one for each degree. That makes it much easier to find unknown coefficients when factoring, rewriting expressions, or decomposing fractions.


2. Coefficient Comparison

2‑1. Principle

Within a polynomial identity, coefficients of equal degree must match. Example: ax2+bx+c=3x2+2x+5ax^2 + bx + c = 3x^2 + 2x + 5 forces a=3a = 3, b=2b = 2, c=5c = 5. This procedure is the coefficient comparison method.

2‑2. Example

Find a,b,ca, b, c such that x36x2+11x6=(x1)(ax2+bx+c).x^3 - 6x^2 + 11x - 6 = (x - 1)(ax^2 + bx + c).

Expand the right-hand side: ax3+(ba)x2+(cb)xc.ax^3 + (b - a)x^2 + (c - b)x - c.

Match coefficients:

{a=1,ba=6,cb=11,c=6.\begin{cases} a = 1, \\ b - a = -6, \\ c - b = 11, \\ -c = -6. \end{cases}

Now solve them in order:

  • From a=1a = 1, we get a=1a = 1.
  • From ba=6b - a = -6, we get b1=6b - 1 = -6, so b=5b = -5.
  • From cb=11c - b = 11, we get c(5)=11c - (-5) = 11, so c=6c = 6.
  • The last equation c=6-c = -6 confirms that c=6c = 6 is correct.

Therefore a=1a = 1, b=5b = -5, c=6c = 6.


3. Method of Undetermined Coefficients

3‑1. Meaning

In this method, we leave unknown coefficients as symbols and determine them so the identity holds. In other words, we set up an identity first and then solve for the unknowns by coefficient comparison.

3‑2. Partial-fraction Example

Suppose we want to rewrite a fraction into simpler pieces. That is where undetermined coefficients become useful.

Determine A,BA, B so that 2x+3(x1)(x+2)=Ax1+Bx+2.\frac{2x + 3}{(x - 1)(x + 2)} = \frac{A}{x - 1} + \frac{B}{x + 2}.

Multiply both sides by (x1)(x+2)(x - 1)(x + 2): 2x+3=A(x+2)+B(x1).2x + 3 = A(x + 2) + B(x - 1).

Expand: 2x+3=(A+B)x+(2AB).2x + 3 = (A + B)x + (2A - B).

Compare coefficients to get {A+B=2,2AB=3.\begin{cases} A + B = 2, \\ 2A - B = 3. \end{cases}

Hence A=53A = \tfrac{5}{3}, B=13B = \tfrac{1}{3}.

3‑3. Plugging Convenient Values

The identity

2x+3=A(x+2)+B(x1)2x + 3 = A(x + 2) + B(x - 1)

holds for every permissible value of xx, so we can choose values that simplify the calculation. In this example, x=1x = 1 and x=2x = -2 are especially convenient because they make one term disappear.

  • Plug x=1x = 15=3A5 = 3A.
  • Plug x=2x = -21=3B-1 = -3B.

So A=53A = \tfrac{5}{3} and B=13B = \tfrac{1}{3} again.

This is not a different idea from coefficient comparison. It uses the same identity, but it chooses values of xx that isolate the unknowns more quickly. Coefficient comparison is still the safest way to see the whole structure, and substitution is a faster shortcut when the identity is already set up clearly.


4. Key Takeaways

Concept Core idea
Identity Holds for every value
Polynomial identity Two polynomials equal for all xx
Coefficient comparison Match coefficients degree by degree
Undetermined coefficients Treat unknown coefficients as symbols and solve
Identity

Polynomial equality

Difference becomes zero polynomial

Coefficient comparison

Solve for unknowns

5. Practice Problems

Problem 1

Find a,ba, b if 2x2+5x+3=(x+1)(ax+b).2x^2 + 5x + 3 = (x + 1)(ax + b).

Answer

Expand the right-hand side to ax2+(a+b)x+bax^2 + (a + b)x + b.

Matching coefficients gives:

  • a=2a = 2
  • a+b=5a + b = 5, so 2+b=52 + b = 5 and b=3b = 3
  • the constant term also gives b=3b = 3, so the result is consistent

Therefore a=2a = 2, b=3b = 3.

Problem 2

Find a,b,ca, b, c if x3+2x25x6=(x+1)(ax2+bx+c).x^3 + 2x^2 - 5x - 6 = (x + 1)(ax^2 + bx + c).

Answer

Expanding the right-hand side gives ax3+(a+b)x2+(b+c)x+cax^3 + (a + b)x^2 + (b + c)x + c.

Match coefficients: {a=1,a+b=2,b+c=5,c=6.\begin{cases} a = 1, \\ a + b = 2, \\ b + c = -5, \\ c = -6. \end{cases}

Thus a=1a = 1, b=1b = 1, c=6c = -6.


6. Coming Up

Next we’ll explore

  • how to view a polynomial through the roots of an equation
  • why factorization is the key tool for reading those roots
  • why the point where factorization stops in the real numbers leads to complex numbers

In one sentence:

Polynomial identities collapse into polynomial equality, enabling coefficient comparison and the method of undetermined coefficients.

💬 댓글

이 글에 대한 의견을 남겨주세요