No history yet

Advanced Algebraic Identities

Structure is Everything

In competition math, speed and insight are your greatest assets. Standard algebraic techniques like the quadratic formula are essential, but they won't always be the fastest or most elegant path to a solution. Advanced algebra is about recognizing hidden structures within equations and exploiting them.

Instead of brute-forcing a solution by finding the exact roots of a high-degree polynomial, we can look for relationships between the roots and the coefficients. This shift in perspective is key to solving complex problems under pressure.

Roots and Coefficients

You already know that for a quadratic equation ax2+bx+c=0ax^2 + bx + c = 0 with roots r1r_1 and r2r_2, the sum of the roots is b/a-b/a and the product is c/ac/a. This idea, known as , extends beautifully to polynomials of any degree.

Consider a general nth-degree polynomial: P(x)=anxn+an1xn1++a1x+a0=0P(x) = a_n x^n + a_{n-1} x^{n-1} + \dots + a_1 x + a_0 = 0

If its roots are r1,r2,,rnr_1, r_2, \dots, r_n, then we can relate the coefficients to the sums of the products of the roots.

iri=r1+r2++rn=an1ani<jrirj=r1r2+r1r3+=an2ani<j<krirjrk=r1r2r3+=an3aniri=r1r2rn=(1)na0an\begin{aligned} \\ \sum_{i} r_i &= r_1 + r_2 + \dots + r_n = -\frac{a_{n-1}}{a_n} \\ \sum_{i<j} r_i r_j &= r_1r_2 + r_1r_3 + \dots = \frac{a_{n-2}}{a_n} \\ \sum_{i<j<k} r_i r_j r_k &= r_1r_2r_3 + \dots = -\frac{a_{n-3}}{a_n} \\ &\vdots \\ \prod_{i} r_i &= r_1 r_2 \dots r_n = (-1)^n \frac{a_0}{a_n} \\ \end{aligned}

These relationships are incredibly powerful. They allow us to find information about the roots, like their sum or the sum of their squares, without ever calculating the individual roots themselves.

Elegant Factoring

Sometimes a problem hinges on factoring an expression that doesn't fit a standard pattern. Two special identities are worth committing to memory.

Simon's Favorite Factoring Trick (SFFT) is used to factor expressions of the form xy+ax+byxy + ax + by. The trick is to add the term abab to both sides of an equation to create a factorable expression.

xy+ax+by=cxy+ax+by+ab=c+ab(x+b)(y+a)=c+ab\begin{aligned} \\ xy + ax + by &= c \\ xy + ax + by + ab &= c + ab \\ (x+b)(y+a) &= c+ab \\ \end{aligned}

This trick is especially useful in Diophantine equations where you need to find integer solutions for xx and yy. By factoring, you can turn the problem into finding the integer factors of c+abc+ab.

Another powerful tool is the Sophie Germain Identity, which factors a sum of a fourth power and four times another fourth power.

a4+4b4=(a2+2b2+2ab)(a2+2b22ab)a^4 + 4b^4 = (a^2 + 2b^2 + 2ab)(a^2 + 2b^2 - 2ab)

Symmetry and Sums

Many competition problems involve —expressions where swapping any of the variables leaves the expression unchanged. For example, x+yx+y, x2+y2x^2+y^2, and xyzxyz are symmetric. The elementary symmetric polynomials from Vieta's formulas are the fundamental building blocks for all other symmetric polynomials.

A common task is to find the sum of the kth powers of the roots of a polynomial, like Sk=r1k+r2k++rnkS_k = r_1^k + r_2^k + \dots + r_n^k. While you could derive this from Vieta's formulas for small kk, it gets complicated quickly. Newton's Sums provide a recursive relationship to find these power sums efficiently.

anS1+an1=0 anS2+an1S1+2an2=0 anS3+an1S2+an2S1+3an3=0 \begin{aligned} \\ a_n S_1 + a_{n-1} &= 0 \ \\ a_n S_2 + a_{n-1} S_1 + 2a_{n-2} &= 0 \ \\ a_n S_3 + a_{n-1} S_2 + a_{n-2} S_1 + 3a_{n-3} &= 0 \ &\vdots \\ \end{aligned}

Finally, let's consider the Polynomial Remainder Theorem. It states that the remainder of the division of a polynomial P(x)P(x) by a linear factor (xa)(x-a) is simply P(a)P(a). This is a direct consequence of the division algorithm, where P(x)=Q(x)(xa)+RP(x) = Q(x)(x-a) + R. Plugging in x=ax=a makes the first term zero, leaving P(a)=RP(a) = R.

A direct corollary is the Factor Theorem: (xa)(x-a) is a factor of P(x)P(x) if and only if P(a)=0P(a)=0. This is the formal justification for testing potential integer roots when factoring polynomials.

Ready to test your skills? Let's try a few problems.

Quiz Questions 1/5

If a cubic polynomial is given by P(x)=x37x2+14x8=0P(x) = x^3 - 7x^2 + 14x - 8 = 0, and its roots are r1,r2, and r3r_1, r_2, \text{ and } r_3, what is the value of the sum of the squares of the roots, r12+r22+r32r_1^2 + r_2^2 + r_3^2?

Quiz Questions 2/5

What is the remainder when the polynomial P(x)=2x45x3+x27x+9P(x) = 2x^4 - 5x^3 + x^2 - 7x + 9 is divided by (x3)(x-3)?

Mastering these techniques isn't about memorizing formulas, but about recognizing patterns. When you see a complex polynomial problem, ask yourself: Is there symmetry? Is there a relationship between the roots I can use? Can I factor this in a clever way? This mindset is the key to unlocking elegant solutions.