Welcome! Today we're tackling Cubic Construction and Scaling to Integer Coefficients — building polynomials from their zeros and cleaning up the results.
Remember the quadratic formula?
This extends to cubics with three symmetric functions:
| Symbol | Meaning |
|---|---|
| Sum of zeros | |
| Sum of pairwise products | |
| Product of all zeros |
The signs follow a pattern:
Minus, plus, minus — the signs alternate.
When the zeros include fractions, the constructed polynomial ends up with fractional coefficients.
That's where the scaling clean-up step comes in — multiplying through to get integer coefficients.
By the end of this lesson, you will master:
Cubic Symmetric Functions 📐
A cubic has three zeros, so you need three symmetric functions to describe them:
| Function | Name | Formula |
|---|---|---|
| Sum of zeros | ||
| Sum of pairwise products | ||
| Product of all zeros |
Computing requires listing all three pairskey — the same skill you use when verifying relationships between zeros.
Your Turn ✏️
Compute , , and for the zeros , , and .
Remember:
Let's compute each symmetric function for zeros 3, 1/2, -1.
S₁ (sum): = = =
S₂ (sum of pairwise products — three pairs):
Add:
So S₂ = -2Answer
S₃ (product of all three zeros):
Step-by-step calculation:
First, multiply the first two:
Then multiply by the third:
Therefore, S₃
⚠️ The most common error in S₂: computing only two of the three pairs.
Many students forget that "sum of products taken two at a time" means three pairs, not two!
Always list all three pairs as a checklist before adding:
Then sum:
With , , computed, the cubic construction formula uses alternating signs:
The signs follow the pattern: minus, plus, minus (alternating).
⚠️ Watch out for the double negative — when is negative, you get , which becomes positive.
The cubic construction formula:
Given values:
Your turn ✏️
Using , , , write the cubic polynomial .
Let's apply the formula term by term:
With , , .
Building each term:
term: Just
: Since S₁, we get
: Since S₂, we get
: Since S₃, we get
Result:
Note the double negative in the last term: , and the formula has = double neg = .
Writing it in two steps makes the sign change visible.
Scaling to Integer Coefficients 📐
We've constructed a polynomial, but it has fractional coefficients. In most problems, we're expected to give our answer with integer coefficients.
The technique is simple: scale by the LCM of all denominators to clear the fractions.
Given Information:
For the polynomial
The denominators are:
| Term | Denominator |
|---|---|
| 1 | |
| 2 | |
| 1 | |
| 2 |
LCM of denominators = 2
Your turn! ✏️
Scale to have integer coefficients.
Also answer: Does scaling change the zeros of the polynomial?
Scaling procedure:
Identify all denominators: (denominator 1), (denominator 2), (denominator 1), (denominator 2).
LCM of 1, 2, 1, 2 = 2key!.
Result:
Notice how all the fractions have disappeared — we now have a polynomial with integer coefficients that's much easier to work with!
⚠️ Critical Rule: When scaling, you must multiply EVERY term by the LCM — including the term!
This is a common mistake students make. Don't just multiply the fractional terms!
Common Mistake:
If you only multiply the fractional terms ( and ) by 2, you get:
This is a different polynomial with different zeros — NOT what we want!
Correct approach: Multiply ALL terms by 2 to get .
Why scaling preserves zeros: If makes equal 0, then , so also makes equal 0.
Key rule: Non-zero constant multiples of a polynomial always have the same zeros.
So and have exactly the same zerossame!: , , and .