Methods12 2ed Ch06
Methods12 2ed Ch06
Polynomials
Objectives
I To add, subtract and multiply polynomials.
I To divide polynomials.
I To use the remainder theorem, factor theorem and rational-root theorem to identify
the linear factors of cubic and quartic polynomials.
I To solve equations and inequalities involving cubic and quartic polynomials.
I To recognise and sketch the graphs of cubic and quartic functions.
I To find the rules for given cubic graphs.
I To apply cubic functions to solving problems.
I To use the bisection method to solve polynomial equations numerically.
Example 1
Let P(x) = x4 − 3x3 − 2. Find:
a P(1) b P(−1) c P(2) d P(−2)
Solution
a P(1) = 14 − 3 × 13 − 2 b P(−1) = (−1)4 − 3 × (−1)3 − 2
=1−3−2 =1+3−2
= −4 =2
Example 2
a Let P(x) = 2x4 − x3 + 2cx + 6. If P(1) = 21, find the value of c.
b Let Q(x) = 2x6 − x3 + ax2 + bx + 20. If Q(−1) = Q(2) = 0, find the values of a and b.
Solution Explanation
4 3
a P(x) = 2x − x + 2cx + 6 and P(1) = 21. We will substitute x = 1 into P(x)
P(1) = 2(1)4 − (1)3 + 2c + 6 to form an equation and solve.
= 2 − 1 + 2c + 6
= 7 + 2c
Since P(1) = 21,
7 + 2c = 21
c=7
b Q(x) = 2x6 − x3 + ax2 + bx + 20 and First find Q(−1) and Q(2) in terms
Q(−1) = Q(2) = 0. of a and b.
Q(−1) = 2(−1)6 − (−1)3 + a(−1)2 − b + 20
= 2 + 1 + a − b + 20
= 23 + a − b
Example 3
Let P(x) = x3 − 6x + 3 and Q(x) = x2 − 3x + 1. Find:
a P(x) + Q(x) b P(x) − Q(x) c P(x)Q(x)
Solution
a P(x) + Q(x) b P(x) − Q(x)
3 2
= x − 6x + 3 + x − 3x + 1 = x3 − 6x + 3 − (x2 − 3x + 1)
= x3 + x2 − 6x − 3x + 3 + 1 = x3 − 6x + 3 − x2 + 3x − 1
= x3 + x2 − 9x + 4 = x3 − x2 − 6x + 3x + 3 − 1
= x3 − x2 − 3x + 2
c P(x)Q(x) = (x3 − 6x + 3)(x2 − 3x + 1)
= x3 (x2 − 3x + 1) − 6x(x2 − 3x + 1) + 3(x2 − 3x + 1)
= x5 − 3x4 + x3 − 6x3 + 18x2 − 6x + 3x2 − 9x + 3
= x5 − 3x4 + (x3 − 6x3 ) + (18x2 + 3x2 ) − (6x + 9x) + 3
= x5 − 3x4 − 5x3 + 21x2 − 15x + 3
We use the notation deg( f ) to denote the degree of a polynomial f . For f , g , 0, we have
deg( f + g) ≤ max deg( f ), deg(g) (provided f + g , 0)
deg( f × g) = deg( f ) + deg(g)
Equating coefficients
Two polynomials P and Q are equal only if their corresponding coefficients are equal. For
two cubic polynomials, P(x) = a3 x3 + a2 x2 + a1 x + a0 and Q(x) = b3 x3 + b2 x2 + b1 x + b0 ,
they are equal if and only if a3 = b3 , a2 = b2 , a1 = b1 and a0 = b0 .
For example, if
P(x) = 4x3 + 5x2 − x + 3 and Q(x) = b3 x3 + b2 x2 + b1 x + b0
then P(x) = Q(x) if and only if b3 = 4, b2 = 5, b1 = −1 and b0 = 3.
Example 4
The polynomial P(x) = x3 + 3x2 + 2x + 1 can be written in the form (x − 2)(x2 + bx + c) + r
where b, c and r are real numbers. Find the values of b, c and r.
Solution Explanation
2
(x − 2)(x + bx + c) + r We first expand the brackets of
= x(x2 + bx + c) − 2(x2 + bx + c) + r (x − 2)(x2 + bx + c) + r
= x3 + bx2 + cx − 2x2 − 2bx − 2c + r
= x3 + (b − 2)x2 + (c − 2b)x − 2c + r
We have
x3 + 3x2 + 2x + 1 = x3 + (b − 2)x2 + (c − 2b)x − 2c + r
for all real numbers x. This implies We now equate coefficients:
b−2=3 ∴ b=5 first the coefficients of x2 , then
the coefficients of x, and finally
c − 2b = 2 ∴ c = 2b + 2 = 12
the constants.
−2c + r = 1 ∴ r = 2c + 1 = 25
Hence b = 5, c = 12 and r = 25. This means that Substitute the values for b, c and r
2
P(x) = (x − 2)(x + 5x + 12) + 25 into (x − 2)(x2 + bx + c) + r.
Summary 6A
A polynomial function is a function that can be written in the form
P(x) = an xn + an−1 xn−1 + · · · + a1 x + a0
where n is a natural number or zero, and the coefficients a0 , . . . , an are real numbers
with an , 0. The leading term is an xn (the term of highest index) and the constant
term is a0 (the term not involving x).
The degree of a polynomial is the index n of the leading term.
The sum, difference and product of two polynomials is a polynomial. Division does not
always lead to another polynomial.
Two polynomials P and Q are equal only if their corresponding coefficients are equal.
Two cubic polynomials, P(x) = a3 x3 + a2 x2 + a1 x + a0 and Q(x) = b3 x3 + b2 x2 + b1 x + b0 ,
are equal if and only if a3 = b3 , a2 = b2 , a1 = b1 and a0 = b0 .
Skill-
sheet Exercise 6A
Example 3 5 Let f (x) = x3 − 2x2 + x, g(x) = 2 − 3x and h(x) = x2 + x. Simplify each of the following:
a f (x) + g(x) b f (x) + h(x) c f (x) − g(x)
d 3 f (x) e f (x)g(x) f g(x)h(x)
g f (x) + g(x) + h(x) h f (x)h(x)
Example 4 7 It is known that x3 − 7x2 + 4x + 12 = (x + 1)(x2 + bx + c) for all values of x, for suitable
values of b and c.
a Expand (x + 1)(x2 + bx + c) and collect like terms.
b Find b and c by equating coefficients.
c Hence write x3 − 7x2 + 4x + 12 as a product of three linear factors.
8 Let x2 + 6x − 2 = (x − b)2 + c. Find the values of b and c so that this is true for all x.
6B Division of polynomials
In order to sketch the graphs of many cubic and quartic functions (as well as higher degree
polynomials) it is often necessary to find the x-axis intercepts. As with quadratics, finding
x-axis intercepts can be done by factorising and then solving the resulting equation using the
null factor theorem.
All cubics will have at least one x-axis intercept. Some will have two and others three.
We shall first look at the techniques for dividing one polynomial by another. One process for
division of polynomials is exactly the same as the long division process for numbers.
21
13 274
26
14
13
1
We have
274 = 13 × 21 + 1
In this example:
274 is the dividend 13 is the divisor
21 is the quotient 1 is the remainder.
x+9
x − 2 x2 + 7x + 11 Divide x2 by x. This gives x.
x2 − 2x Multiply x − 2 by x and subtract from x2 + 7x + 11.
9x + 11 This leaves 9x + 11. Now x into 9x goes 9 times.
9x − 18 Multiply x − 2 by 9 and subtract from 9x + 11.
29 This leaves 29 remainder.
2
Thus (x + 7x + 11) ÷ (x − 2) = x + 9 with remainder 29. We write
x2 + 7x + 11 = (x − 2)(x + 9) + 29
We can see in this example that x − 2 is not a factor of x2 + 7x + 11. We can also write the
result as
x2 + 7x + 11 29
= x+9+
x−2 x−2
In this example:
x2 + 7x + 11 is the dividend
x − 2 is the divisor
x + 9 is the quotient
29 is the remainder.
Division of polynomials
When we divide the polynomial P(x) by the polynomial D(x) we obtain two polynomials,
Q(x) the quotient and R(x) the remainder, such that
P(x) = D(x)Q(x) + R(x)
and either R(x) = 0 or R(x) has degree less than D(x).
Here P(x) is the dividend and D(x) is the divisor.
Note: If R(x) = 0, then D(x) is a factor of P(x). For example, let P(x) = x2 + 6x + 8
and D(x) = x + 2. Then P(x) = (x + 2)(x + 4) = D(x)(x + 4) + 0.
Example 5
Divide x3 + x2 − 14x − 24 by x + 2.
Solution Explanation
2 Divide x, from x + 2, into the leading term x3 to get x2 .
x − x − 12
x + 2 x3 + x2 − 14x − 24 Multiply x2 by x + 2 to give x3 + 2x2 .
x3 + 2x2 Subtract from x3 + x2 − 14x − 24, leaving −x2 − 14x − 24.
In this example we see that x + 2 is a factor of x3 + x2 − 14x − 24, as the remainder is zero.
Thus (x3 + x2 − 14x − 24) ÷ (x + 2) = x2 − x − 12 with zero remainder.
x3 + x2 − 14x − 24
∴ = x2 − x − 12
x+2
Example 6
Divide 3x3 + x − 3 by x − 2.
Solution Explanation
2 Here there is no term in x2 , however we can rewrite the
3x + 6x + 13 polynomial as 3x3 + 0x2 + x − 3.
x − 2 3x3 + 0x2 + x − 3
3x3 − 6x2 Divide x, from x − 2, into 3x3 to get 3x2 .
6x2 + x − 3 Multiply 3x2 by x − 2 to give 3x3 − 6x2 .
6x2 − 12x Subtract from 3x3 + 0x2 + x − 3, leaving 6x2 + x − 3.
13x − 3 Now divide x, from x − 2, into 6x2 to get 6x.
13x − 26 Multiply 6x by x − 2 to give 6x2 − 12x.
23 Subtract from 6x2 + x − 3, leaving 13x − 3.
Divide x into 13x to get 13.
Multiply 13 by x − 2 to give 13x − 26.
Subtract from 13x − 3, leaving remainder of 23.
Example 7
Divide 3x3 + 2x2 − x − 2 by 2x + 1.
Solution Alternative
3 2 For the alternative method, write the identity
2x + 14 x − 5
8 3x3 + 2x2 − x − 2 = (2x + 1)(ax2 + bx + c) + r
2x + 1 3x + 2x2 − x − 2
3
Equate coefficients of x3 :
3x3 + 32 x2
3 = 2a. Therefore a = 23 .
1 2
2x −x−2
Equate coefficients of x2 :
1 2 1
2x + 4x 2 = a + 2b. Therefore b = 12 (2 − 32 ) = 41 .
− 45 x − 2 Equate coefficients of x:
− 45 x − 5
8
−1 = 2c + b. Therefore c = 21 (−1 − 14 ) = − 58 .
−1 38 Equate constant terms:
5
−2 = c + r. Therefore r = −2 + 8 = − 11
8 .
Note: The Interactive Textbook includes an online appendix on polynomials that describes
another method for division (called synthetic division).
Example 8
Divide 3x3 − 2x2 + 3x − 4 by x2 − 1.
Solution Explanation
3x − 2 We write x2 − 1 as x2 + 0x − 1.
x + 0x − 1 3x3 − 2x2 + 3x − 4
2
3x3 + 0x2 − 3x
−2x2 + 6x − 4
−2x2 + 0x + 2
6x − 6
∴ 3x3 − 2x2 + 3x − 4 = (x2 − 1)(3x − 2) + 6x − 6
Summary 6B
When we divide the polynomial P(x) by the polynomial D(x) we obtain two
polynomials, Q(x) the quotient and R(x) the remainder, such that
P(x) = D(x)Q(x) + R(x)
and either R(x) = 0 or R(x) has degree less than D(x).
Two methods for dividing polynomials are long division and equating coefficients.
(A third method is presented in the polynomials appendix in the Interactive Textbook.)
Exercise 6B
Example 5 1 For each of the following, divide the polynomial by the accompanying linear
expression:
a x3 + x2 − 2x + 3, x − 1 b 2x3 + x2 − 4x + 3, x + 1
c 3x3 − 4x2 + 2x + 1, x + 2 d 2x3 − 3x2 + x − 2, x − 3
Example 6 2 For each of the following, divide the polynomial by the accompanying linear
expression:
a x3 + 3x − 4, x + 1 b 2x3 + 17x + 15, x + 4
c x3 + 4x2 + 2, x + 3 d x3 − 3x2 + 6x, x − 2
3 For each of the following, divide the polynomial by the accompanying linear expression
and hence show that the linear expression is a factor of the polynomial:
a x3 − x2 + 3x + 5, x + 1 b 2x3 + 6x2 − 14x − 24, x + 4
c x3 − 5x2 + 18, x − 3 d 3x3 − 7x2 − 4x + 12, x − 2
4 Find the quotient and remainder when the first polynomial is divided by the second:
a x3 + 2x2 − 3x + 1, x + 2 b x3 − 3x2 + 5x − 4, x − 5
c 2x3 − x2 − 3x − 7, x + 1 d 5x3 − 3x + 7, x − 4
Example 7 5 For each of the following, divide the polynomial by the accompanying linear
expression:
a x3 + 6x2 + 8x + 11, 2x + 5 b 2x3 + 5x2 − 4x − 5, 2x + 1
For each of the following, divide the cubic polynomial by the linear polynomial:
CAS
6
a 2x3 + 3x2 − 32x + 15, 2x − 1 b x3 − 3x2 + 1, 3x − 1
x3 + 2x2 + 5x + 1 a
7 a Write in the form P(x) + , where P(x) is a quadratic
x−1 x−1
expression and a is a real number.
2x3 − 2x2 + 5x + 3 a
b Write in the form P(x) + , where P(x) is a quadratic
2x − 1 2x − 1
expression and a is a real number.
Example 8 8 For each of the following, divide the polynomial P(x) by the polynomial D(x):
a P(x) = 2x3 − 6x2 − 4x + 12, D(x) = x2 − 2
b P(x) = x3 − 6x2 + x − 8, D(x) = x2 + 1
c P(x) = 2x3 − 6x2 − 4x + 54, D(x) = x2 − 2
d P(x) = x4 − 2x3 − 7x2 + 7x + 5, D(x) = x2 + 2x − 1
For each of the following, divide the polynomial P(x) by the polynomial D(x):
CAS
9
a P(x) = x4 − x3 + 7x + 2, D(x) = x2 + 2x − 1
b P(x) = 2x4 + x3 + 13x + 10, D(x) = 2x2 − x + 4
6C Factorisation of polynomials
You can factorise some cubic polynomials using techniques that you already know.
Some cubics can be factorised by first taking out a common factor. For example:
2x3 − 14x2 + 24x = 2x(x2 − 7x + 12)
= 2x(x − 3)(x − 4)
Some cubics can be factorised by using grouping of terms. For example:
x3 − 3x2 − 2x + 6 = x2 (x − 3) − 2(x − 3)
= (x2 − 2)(x − 3)
√ √
= (x + 2)(x − 2)(x − 3)
We will apply these techniques to solving cubic equations in Section 6D. In this section we
develop more general techniques for factorising cubic polynomials.
Remainder theorem
Since the aim of factorising a cubic is usually to solve an equation or to find the x-axis
intercepts of a graph, the first step is to establish whether a particular linear expression
is a factor of the given cubic or not. It is possible to do this without actually doing the
division process.
Let P(x) = x3 + 3x2 + 2x + 1.
Divide P(x) by x − 2:
2
x + 5x + 12
x − 2 x3 + 3x2 + 2x + 1
x3 − 2x2
5x2 + 2x + 1
5x2 − 10x
12x + 1
12x − 24
25
The remainder is 25.
Now evaluate P(2):
P(2) = (2)3 + 3(2)2 + 2(2) + 1
= 8 + 12 + 4 + 1
= 25
The example suggests that, when P(x) is divided by x − α, the remainder is equal to P(α).
This is in fact true, and the result is called the remainder theorem.
The remainder theorem can be proved as follows. Suppose that, when the polynomial P(x) is
divided by x − α, the quotient is Q(x) and the remainder is R. Then
P(x) = (x − α)Q(x) + R
Now, as the two expressions are equal for all values of x, they are equal for x = α.
∴ P(α) = (α − α)Q(α) + R ∴ R = P(α)
i.e. the remainder when P(x) is divided by x − α is equal to P(α). We therefore have
P(x) = (x − α)Q(x) + P(α)
More generally:
Remainder theorem
α
When P(x) is divided by βx + α, the remainder is P − .
β
Example 9
Use the remainder theorem to find the value of the remainder when:
a P(x) = x3 − 3x2 + 2x + 6 is divided by x − 2
b P(x) = x3 − 2x + 4 is divided by 2x + 1.
Solution Explanation
a P(2) = (2)3 − 3(2)2 + 2(2) + 6 We apply the remainder theorem by
= 8 − 12 + 4 + 6 evaluating P(2).
=6
The remainder is 6.
1 1 3 1
b P− = − −2 − +4 We apply the remainder theorem by
2 2 2
evaluating P(− 21 ).
1
=− +1+4
8
39
=
8
39
The remainder is .
8
Example 10
When P(x) = x3 + 2x + a is divided by x − 2, the remainder is 4. Find the value of a.
Solution Explanation
P(2) = 8 + 4 + a = 4 We apply the remainder theorem to form a
Therefore a = −8. linear equation in a.
Factor theorem
Now, in order for x − α to be a factor of the polynomial P(x), the remainder must be zero.
We state this result as the factor theorem.
Factor theorem
For a polynomial P(x):
If P(α) = 0, then x − α is a factor of P(x).
Conversely, if x − α is a factor of P(x), then P(α) = 0.
More generally: α
If βx + α is a factor of P(x), then P − = 0.
α β
Conversely, if P − = 0, then βx + α is a factor of P(x).
β
Example 11
Show that x + 1 is a factor of x3 − 4x2 + x + 6 and hence find the other linear factors.
Solution Alternative
Let 3
P(x) = x − 4x + x + 62 The division can also be performed using
Then P(−1) = (−1)3 − 4(−1)2 + (−1) + 6 the method of equating coefficients.
Thinking about the numbers involved in the process of factorisation gives us a way of
searching for factors.
For example, consider the polynomial x3 − 2x2 − 5x + 6. Assume that this polynomial has a
linear factor x − α, where α is an integer. Then we can write
x3 − 2x2 − 5x + 6 = (x − α)(x2 + bx + c)
= x3 − (α − b)x2 − (αb − c)x − αc
By considering the constant term, it can be seen that αc = −6. Therefore α divides 6. (Since
α is an integer, it follows that b and c are too.)
Thus only the factors of 6 need be considered (i.e. ±1, ±2, ±3, ±6).
Try these in turn until a value for α makes P(α) = 0. This process is completed in the
following example.
Example 12
Factorise x3 − 2x2 − 5x + 6.
Solution Explanation
P(1) = 1 − 2 − 5 + 6 = 0 The factors of 6 are ±1, ±2, ±3, ±6.
∴ x − 1 is a factor. We evaluate the first option, P(1), which
Now divide to find the other factors: in fact equals 0. If P(1) did not equal 0,
2 we would try the other factors of 6 in turn
x −x−6 until a zero result is found.
x − 1 x3 − 2x2 − 5x + 6
x3 − x2
−x2 − 5x + 6
−x2 + x
−6x + 6
−6x + 6
0
∴ x3 − 2x2 − 5x + 6 = (x − 1)(x2 − x − 6)
= (x − 1)(x − 3)(x + 2)
Note: For some cubics, the quadratic factor may not be able to be factorised. Such a cubic
has only one linear factor. We consider the consequences for its graph in Section 6F.
Rational-root theorem
Consider the cubic polynomial
P(x) = 2x3 − x2 − x − 3
We can easily show that
P(1) , 0, P(−1) , 0, P(3) , 0 and P(−3) , 0
Hence the equation P(x) = 0 has no solution that is an integer.
Does it have a rational solution, that is, a fraction for a solution?
The rational-root theorem helps us with this question.
The theorem tells us that, if βx + α is a factor of 2x3 − x2 − x − 3, where α and β are integers
with highest common factor 1 (i.e. α and β are relatively prime), then β must divide 2 and
α must divide −3.
α
Therefore, if − is a solution of the equation P(x) = 0 (where α and β are relatively prime),
β
then β divides 2 and α divides −3. So the only value of β that needs to be considered is 2, and
α = ±3 or α = ±1.
1 3
We can test these through the factor theorem. That is, check P ± and P ± . We find
2 2
3 3 3 3 2 3
P =2 − − −3
2 2 2 2
27 9 3
=2× − − −3
8 4 2
=0
We have found that 2x − 3 is a factor.
Dividing through we find that
2x3 − x2 − x − 3 = (2x − 3)(x2 + x + 1)
We can show that x2 + x + 1 has no linear factors by showing that the discriminant of this
quadratic is negative.
Example 13
Factorise P(x) = 3x3 + 8x2 + 2x − 5.
Solution Explanation
P(1) = 8 , 0, P(−1) = −2 , 0, The only possible integer solutions
P(5) = 580 , 0, P(−5) = −190 , 0, are ±5 or ±1. So there are no
5 integer solutions. We now use the
P − =0 rational-root theorem.
3 α
Therefore 3x + 5 is a factor. If − is a solution, the only value of β
β
that needs to be considered is 3 and
Dividing gives
α = ±5 or α = ±1.
P(x) = 3x3 + 8x2 + 2x − 5
= (3x + 5)(x2 + x − 1)
We complete the square for x2 + x − 1 to
factorise:
1 1
x2 + x − 1 = x2 + x + − − 1
4 4
1 2 5
= x+ −
2 4
√ √
1 5 1 5
= x+ + x+ −
2 2 2 2
Hence
√ √
1 5 1 5
P(x) = (3x + 5) x + + x+ −
2 2 2 2
Rational-root theorem
Let P(x) = an xn + an−1 xn−1 + · · · + a1 x + a0 be a polynomial of degree n with all the
coefficients ai integers. Let α and β be integers such that the highest common factor
of α and β is 1 (i.e. α and β are relatively prime).
If βx + α is a factor of P(x), then β divides an and α divides a0 .
Note: A proof of the rational-root theorem is given in the polynomials appendix in the
Interactive Textbook.
x3 − a3 = (x − a)(x2 + ax + a2 )
x3 + a3 = (x + a)(x2 − ax + a2 )
Example 15
Factorise 8x3 + 64.
Solution
8x3 + 64 = (2x)3 + (4)3
= (2x + 4)(4x2 − 8x + 16)
Summary 6C
Remainder theorem α
When P(x) is divided by βx + α, the remainder is P − .
β
Factor theorem α
• If βx + α is a factor of P(x), then P − = 0.
α β
• Conversely, if P − = 0, then βx + α is a factor of P(x).
β
A cubic polynomial can be factorised by using the factor theorem to find the first linear
factor and then using polynomial division or the method of equating coefficients to
complete the process.
Rational-root theorem Let P(x) = an xn + an−1 xn−1 + · · · + a1 x + a0 be a polynomial
of degree n with all the coefficients ai integers. Let α and β be integers such that the
highest common factor of α and β is 1 (i.e. α and β are relatively prime). If βx + α is a
factor of P(x), then β divides an and α divides a0 .
Difference of two cubes: x3 − a3 = (x − a)(x2 + ax + a2 )
Sum of two cubes: x3 + a3 = (x + a)(x2 − ax + a2 )
Skill-
sheet Exercise 6C
Example 9 1 Without dividing, find the remainder when the first polynomial is divided by the second:
a x3 − x2 − 3x + 1, x − 1 b x3 − 3x2 + 4x − 1, x + 2
3 2
c 2x − 2x + 3x + 1, x − 2 d x3 − 2x + 3, x + 1
e x3 + 2x − 5, x − 2 f 2x3 + 3x2 + 3x − 2, x + 2
g 6 − 5x + 9x2 + 10x3 , 2x + 3 h 10x3 − 3x2 + 4x − 1, 2x + 1
i 108x3 − 27x2 − 1, 3x + 1
Example 11 3 Without dividing, show that the first polynomial is exactly divisible by the second
polynomial:
a x3 − x2 + x − 1, x − 1 b x3 + 3x2 − x − 3, x − 1
c 2x3 − 3x2 − 11x + 6, x + 2 d 2x3 − 13x2 + 27x − 18, 2x − 3
4 Find the value of m if the first polynomial is exactly divisible by the second:
a x3 − 4x2 + x + m, x − 3 b 2x3 − 3x2 − (m + 1)x − 30, x − 5
c x3 − (m + 1)x2 − x + 30, x + 3
Example 13 7 Use the rational-root theorem to help factorise each of the following cubic polynomials:
a 2x3 − 7x2 + 16x − 15 b 2x3 − 3x2 + 8x + 5
c 2x3 − 3x2 − 12x − 5 d 2x3 − x2 − 8x − 3
CAS
9
a x3 + x2 − x + 2 b 3x3 − 7x2 + 4
3 2
c x − 4x + x + 6 d 6x3 + 17x2 − 4x − 3
10 Find the values of a and b and factorise the polynomial P(x) = x3 + ax2 − x + b, given
that P(x) is divisible by x − 1 and x + 3.
11 a Show that x − a is a factor of xn − an , for any constant a and any natural number n.
b Find conditions (if any) on n that are required in order that:
i x + a is a factor of xn + an
ii x + a is a factor of xn − an .
Example 16
Solve (x − 2)(x + 1)(x + 3) = 0.
Solution Explanation
Using the null factor theorem, In this example, the cubic has
(x − 2)(x + 1)(x + 3) = 0 implies already been factorised.
x−2=0 or x+1=0 or x+3=0
Thus the solutions are x = 2, −1 and −3.
Example 17
Solve each of the following equations for x:
a 2x3 − x2 − x = 0 b x3 + 2x2 − 10x = 0
Solution
a 2x3 − x2 − x = 0 b x3 + 2x2 − 10x = 0
x(2x2 − x − 1) = 0 x(x2 + 2x − 10) = 0
x(2x + 1)(x − 1) = 0 x(x2 + 2x + 1 − 11) = 0
√ √
∴ x = 0 or x = − 12 or x = 1 x(x + 1 − 11)(x + 1 + 11) = 0
√ √
∴ x = 0 or x = −1 + 11 or x = −1 − 11
Example 18
Solve each of the following equations for x:
a x3 − 4x2 − 11x + 44 = 0 b x3 − ax2 − 11x + 11a = 0
Solution
a x3 − 4x2 − 11x + 44 = 0 b x3 − ax2 − 11x + 11a = 0
x2 (x − 4) − 11(x − 4) = 0 x2 (x − a) − 11(x − a) = 0
Therefore (x − 4)(x2 − 11) = 0 Therefore (x − a)(x2 − 11) = 0
√ √
Hence x = 4 or x = ± 11 Hence x = a or x = ± 11
In the following two examples, the factor theorem is used to find a linear factor.
Example 19
Solve x3 − 4x2 − 11x + 30 = 0.
Solution Explanation
Let 3 2
P(x) = x − 4x − 11x + 30 In this example we first identify
Then P(1) = 1 − 4 − 11 + 30 , 0 a linear factor using the factor
theorem.
P(−1) = −1 − 4 + 11 + 30 , 0
P(2) = 8 − 16 − 22 + 30 = 0
∴ x − 2 is a factor.
By division or inspection, The factorisation is completed using
x3 − 4x2 − 11x + 30 = (x − 2)(x2 − 2x − 15) one of the methods given in the
previous section.
= (x − 2)(x − 5)(x + 3)
∴ (x − 2)(x − 5)(x + 3) = 0
∴ x − 2 = 0 or x − 5 = 0 or x + 3 = 0
∴ x = 2, 5 or −3
Example 20
Solve 2x3 − 5x2 + 5x − 2 = 0.
Solution Explanation
Let 3
P(x) = 2x − 5x + 5x − 22 First find a linear factor using
Then P(1) = 2 − 5 + 5 − 2 = 0 the factor theorem. Then find the
quadratic factor by division.
∴ x − 1 is a factor.
The discriminant of this quadratic
By division or inspection, is negative, so the quadratic cannot
2x3 − 5x2 + 5x − 2 = (x − 1)(2x2 − 3x + 2) be factorised further. Hence there is
∴ (x − 1)(2x2 − 3x + 2) = 0 only one linear factor and therefore
only one solution.
∴x=1
Summary 6D
Cubic polynomial equations can be solved by first using an appropriate factorisation
technique. Factorisation may involve:
taking out a common factor
using grouping of terms
using the factor theorem
polynomial division or equating coefficients
sum or difference of two cubes
using the quadratic formula to complete the factorisation.
Exercise 6D
CAS
7
a 2x3 − 22x2 − 250x + 2574 b 2x3 + 27x2 + 52x − 33
c 2x3 − 9x2 − 242x + 1089 d 2x3 + 51x2 + 304x − 165
y = x3 1
y = 3x3 y = – 2 x3
y y y
x x x
–2 –1 0 1 2 –2 –1 0 1 2 –2 –1 0 1 2
Point of inflection
The significant feature of the graph of a cubic of this form is the point of inflection (a point
of zero gradient). This will be discussed fully in Chapter 18, but for the moment we note that
it is the ‘flat point’ of the graph.
The point of inflection of y = x3 is at the origin (0, 0).
Vertical translations
By adding or subtracting a constant term to y = x3 , the graph moves either ‘up’ or ‘down’.
The graph of y = x3 + k is the basic graph moved k units up (for k > 0). The point of
inflection becomes (0, k). In this case, the graph of y = x3 is translated k units in the positive
direction of the y-axis.
Horizontal translations
The graph of y = (x − h)3 is simply the basic graph moved h units to the ‘right’ (for h > 0).
The point of inflection is at (h, 0). In this case, the graph of y = x3 is translated h units in the
positive direction of the x-axis.
General form
When sketching cubic graphs of the form y = a(x − h)3 + k, first identify the point of
inflection. To add further detail to the graph, find the x-axis and y-axis intercepts.
Example 21
Sketch the graph of the function y = (x − 2)3 + 4.
Solution
The graph of y = x3 is translated 2 units to the right and y
4 units up.
Point of inflection is (2, 4).
3
(2 + √–4, 0)
x-axis intercept: y-axis intercept:
Let y = 0 Let x = 0 4
3 (2, 4)
0 = (x − 2) + 4 y = (0 − 2)3 + 4 x
3 0 1 2 3 4
−4 = (x − 2) y = −8 + 4
√3 (0, –4)
−4 = x − 2 y = −4
√3
x = 2 + −4
≈ 0.413
1
The function f : Ò → Ò, f(x) = x 3
The functions with rules of the form f (x) = a(x − h)3 + k are one-to-one functions. Hence
each of these functions has an inverse function.
1
The inverse function of f (x) = x3 is f −1 (x) = x 3 .
y
y = x3
y=x
1
y = x3
x
0
1
The graphs of y = x3 and y = x 3 are shown above.
1 1
The graph of y = x 3 is instantaneously vertical at x = 0. The graphs of y = x3 and y = x 3
intersect at (1, 1) and (−1, −1).
Example 22
1
Sketch the graph of y = (x − 1) 3 − 2.
Solution Explanation
When x = 0, y Find the axis intercepts.
1
y= (−1) 3 −2 The graph of
1
= −1 − 2 y = (x − 1) 3 − 2
= −3 1
(9, 0) is the graph of y = x 3
When y = 0, x translated 1 unit to the right
1 0
(x − 1) 3 −2=0 and 2 units down.
1
1 3
y = (x – 1) – 2
(x − 1) 3 =2
(0, –3)
x − 1 = 23
x=9
We find the inverse function of a cubic of the form y = a(x − h)3 + k by using the technique
introduced in Chapter 5.
Example 23
Find the inverse function f −1 of f : R → R, f (x) = 2(x − 4)3 + 3.
Solution Explanation
Interchange x and y: Remember that (x, y) ∈ f if and only
x = 2(y − 4)3 + 3 if (y, x) ∈ f −1 .
Solve for y:
x − 3 = 2(y − 4)3
x−3
= (y − 4)3
2
x − 31
3
y−4= The opposite operation to cubing
2
x − 31 is taking the cube root. That is,
3 √3 1
y= +4 x = x3
2
x − 31
3
Therefore f −1 : R → R, f −1 (x) = +4
2
Summary 6E
The graph of y = a(x − h)3 + k has the same shape as y = ax3 but is translated h units in
the positive x-axis direction and k units in the positive y-axis direction (where h and k
are positive constants).
The implied domain of all cubic functions is R.
1
The functions f (x) = x3 and f −1 (x) = x 3 are inverse functions of each other.
Exercise 6E
Example 21 1 Using the method of horizontal and vertical translations, sketch the graph of each of the
following:
a y = (x + 2)3 − 1 b y = (x − 1)3 − 1 c y = (x + 3)3 + 2
d y = (x − 2)3 + 5 e y = (x + 2)3 − 5
Example 24
Sketch the graph of y = (x − 1)(x + 2)(x + 1). Do not give coordinates of turning points.
Solution
To find the x-axis intercepts, let y = 0. y
The polynomial form of the cubic in this example is y = x3 + 2x2 − x − 2. The coefficient
of x3 is positive. We now see what happens when the coefficient of x3 is negative.
The graph of the cubic function y
y = −x3 − 2x2 + x + 2
is the reflection in the x-axis of the graph y = –x3 – 2x2 + x + 2
of the cubic function considered in 2
Example 24. x
–2 –1 0 1 2
When x > 1, y < 0. –2
When −1 < x < 1, y > 0.
When −2 < x < −1, y < 0.
When x < −2, y > 0.
At this stage the location of the turning points is unspecified. However, it is important to note
that, unlike quadratic graphs, the turning points are not symmetrically located between x-axis
intercepts. How to determine the exact values of the coordinates of the turning points will be
shown later in this book.
Sign diagrams
A sign diagram is a number-line diagram which shows when an expression is positive or
negative.
The following is a sign diagram for a cubic function, the graph of which is also shown.
y
α β γ
x
Graph
β γ
+ α
– x
Sign diagram
Using a sign diagram requires that the factors, and the x-axis intercepts, be found. The y-axis
intercept and sign diagram can then be used to complete the graph.
This procedure is shown in Example 25.
Example 25
Sketch the graph of y = x3 + 2x2 − 5x − 6.
Solution
Let P(x) = x3 + 2x2 − 5x − 6
Then P(1) = 1 + 2 − 5 − 6 , 0
P(−1) = −1 + 2 + 5 − 6 = 0
∴ x + 1 is a factor.
By division, y = (x + 1)(x − 2)(x + 3). + x
–
∴ x-axis intercepts are −1, 2 and −3. –3 –2 –1 0 1 2
When x < −3, y is negative. y
When −3 < x < −1, y is positive.
6
When −1 < x < 2, y is negative. 4
2
x
When x > 2, y is positive. –3 –2 –1 –2 0 1 2
This gives the sign diagram. –6
–8
Note: Alternatively, use > Trace > Graph Trace to find the coordinates of the two
menu
turning points. A label will appear on the screen to indicate that the calculator has
found a local maximum or a local minimum.
Repeated factors
The polynomial function f (x) = (x − 1)2 (x + 3) has a repeated factor. In this case x − 1 is
repeated. Since the repeated factor is squared, it is easy to see that the sign of the y-value is
the same ‘close in’ on either side of the corresponding x-axis intercept.
If the factorised cubic has a repeated factor and another linear factor, there are only two
x-axis intercepts and the repeated factor corresponds to one of the turning points.
Example 26
Sketch the graph of y = x2 (x − 1).
Solution
To find the x-axis intercepts, let y = 0.
Then x2 (x − 1) = 0. y
Example 27
Sketch the graph of y = −(x − 1)(x2 + 4x + 5).
Solution
To find the x-axis intercept, let y = 0. y
Note: At this stage of the course, you cannot determine all the features of the graph of a
general cubic polynomial by hand. Further techniques for graphing cubics will be
introduced in Chapter 18.
Summary 6F
The graph of a cubic function can have one, two or three x-axis intercepts.
If a cubic can be written as the product of three linear factors, y = a(x − α)(x − β)(x − γ),
then its graph can be sketched by following these steps:
• Find the y-axis intercept.
• Find the x-axis intercepts.
• Prepare a sign diagram.
• Consider the y-values as x increases to the right of all x-axis intercepts.
• Consider the y-values as x decreases to the left of all x-axis intercepts.
If the cubic has a repeated factor to the power 2, then the y-values have the same sign
immediately to the left and right of the corresponding x-axis intercept.
Exercise 6F
Example 24 1 Sketch the graph for each of the following and draw a sign diagram. Label your sketch
graph showing the points of intersection with the axes. (Do not determine coordinates
of turning points.)
a y = x(x − 1)(x − 3) b y = (x − 1)(x + 1)(x + 2)
c y = (2x − 1)(x − 2)(x + 3) d y = (x − 1)(x − 2)(x − 3)
Example 25 2 Sketch the graph for each of the following and draw a sign diagram. Label your sketch
graph showing the points of intersection with the axes. (Do not determine coordinates
of turning points.)
a y = x3 − 9x b y = x3 − 4x2 − 3x + 18
c y = −x3 + x2 + 3x − 3 d y = 3x3 − 4x2 − 13x − 6
e y = 6x3 − 5x2 − 2x + 1 f y = 2x3 − 9x2 + 7x + 6
Example 26 3 Sketch the graph for each of the following and draw a sign diagram. Label your sketch
graph showing the points of intersection with the axes. (Do not determine coordinates
of turning points.)
a y = (x − 1)(x − 2)2 b y = x2 (x − 4)
c y = 2(x + 1)2 (x − 3) d y = x3 + x2
e y = 4x3 − 8x2 + 5x − 1 f y = x3 − 5x2 + 7x − 3
Sketch the graph for each of the following and draw a sign diagram. Label your sketch
CAS
Example 27 4
graph showing the points of intersection with the axes. (Do not determine coordinates
of turning points.) Use your calculator to help sketch each of them.
a y = (x − 1)(x2 + 1) (Note: There is no turning point or ‘flat point’ of this cubic.)
2
b y = (x + 2)(x − 4) (Note: There are two turning points.)
5 Sketch the graph for each of the following, using a CAS calculator to find the
coordinates of axis intercepts and local maximum and local minimum values:
a y = −4x3 − 12x2 + 37x − 15 b y = −4x3 + 19x − 15
c y = −4x3 + 0.8x2 + 19.8x − 18 d y = 2x3 + 11x2 + 15x
e y = 2x3 + 6x2 f y = 2x3 + 6x2 + 6
6 Show that the graph of f , where f (x) = x3 − x2 − 5x − 3, cuts the x-axis at one point and
touches it at another. Find the values of x at these points.
Example 28
Find { x : x3 + x2 − 5x + 3 ≤ 0 }.
Solution Explanation
P(x) = x3 + x2 − 5x + 3 Use the factor theorem to find
P(1) = 1 + 1 − 5 + 3 = 0 an initial linear factor.
Complete the factorisation.
∴ x − 1 is a factor. By division, y = (x − 1)2 (x + 3).
Find the axis intercepts.
There are only two x-axis intercepts, 1 and −3. The Sketch the graph.
y-axis intercept is 3. (Note that this cubic has a
y
repeated factor, and so (1, 0)
is a turning point as well an
intercept.)
3 Solve the inequality by
2
inspecting the graph.
1
x Express the solution in formal
–3 –2 –1 1 2 set notation.
Summary 6G
Cubic inequalities can be solved by sketching the graph of the corresponding cubic
function and analysing the graph.
Skill-
sheet Exercise 6G
2 Solve the following cubic inequalities. Begin by getting all of the terms on one side.
a x3 > 4x b x3 < 5x2 c x3 + 4x ≤ 4x2
d x3 > 9x e x3 − 6x2 + x ≥ 6 f 2x3 − 6x2 − 4x < −12
ISBN 978-1-009-11448-6 © Michael Evans et al 2022 Cambridge University Press
Photocopying is restricted under law and this material must not be transferred to another party.
6H Families of cubic polynomial functions 239
Example 29
a A cubic function has rule of the form y = a(x − 2)3 + 2. The point (3, 10) is on the graph
of the function. Find the value of a.
b A cubic function has rule of the form y = a(x − 1)(x + 2)(x − 4). The point (5, 16) is on
the graph of the function. Find the value of a.
Solution Explanation
a y = a(x − 2)3 + 2 In each of these problems we substitute in
When x = 3, y = 10. Solve for a: the given values to find the unknown.
Example 30
A cubic function has rule of the form f (x) = ax3 + bx. The points (1, 16) and (2, 30) are on
the graph of the function. Find the values of a and b.
Solution
Since f (1) = 16 and f (2) = 30, we obtain the simultaneous equations
16 = a + b (1)
30 = a(2)3 + 2b (2)
1
Multiply (1) by 2 and subtract from (2). This gives −2 = 6a and hence a = − .
3
49
Substitute in (1) to find b = .
3
Example 31
Determine the rule for the cubic function shown in each of the following graphs:
aa y bb y
2 (3, 2)
2
1
1
x
–1 0 1 2 3 x
–1 0 1
–1
–2 (1, –2)
Solution Explanation
a y = a(x + 1)(x − 2)2 The x-axis intercepts are −1 and 2, and the
Put (3, 2) into the equation: graph touches the x-axis at 2. So the cubic
has a repeated factor x − 2.
2 = a(4)(1)
1
Therefore the form of the rule appears to be
=a
2 y = a(x + 1)(x − 2)2 .
The rule is y = 12 (x + 1)(x − 2)2 .
b y = a(x + 1)3 + 2 This graph appears to be of the form
To determine a, put the known point y = a(x − h)3 + k. The point of inflection
(1, −2) into the equation: is at (−1, 2). Therefore h = −1 and k = 2.
−2 = a(2)3 + 2
−4 = 8a
− 12 = a
The rule is y = − 12 (x + 1)3 + 2.
Example 32
A cubic function f has rule f (x) = ax3 + bx2 + cx + d. If
f (1) = 0, f (2) = −7, f (4) = 27, f (5) = 80
find the values of a, b, c and d.
Summary 6H
The rule of a cubic function can be determined if:
the coordinates of four points on the graph are known
the form of the function is known to be f (x) = a(x − α)2 (x − β), and α and β and the
coordinates of one other point are known
the form of the function is known to be f (x) = a(x − h)3 + k, and the coordinates of the
inflection point (h, k) and one other point are known.
There are other sets of information which can be used to determine the rule of a cubic
function and more of these will be given in Chapter 18.
Skill-
sheet Exercise 6H
Example 29a 1 a A cubic function has rule of the form y = a(x − 3)3 + 1. The point (4, 12) is on the
graph of the function. Find the value of a.
Example 29b b A cubic function has rule of the form y = a(x − 2)(x + 3)(x − 1). The point (3, 24) is
on the graph of the function. Find the value of a.
Example 30 c A cubic function has rule of the form y = ax3 + bx. The points (1, 16) and (2, 40) are
on the graph of the function. Find the values of a and b.
3 Find the equation of the cubic function for which the graph is shown. y
(3, 6)
x
0 2
4 Find a cubic function whose graph touches the x-axis at x = −4, cuts it at the origin, and
has a value 6 when x = −3.
5 The graph of a cubic function has x-axis intercepts 1, 3 and −1 and y-axis intercept −6.
Find the rule for this cubic function.
6 A cubic function f has rule f (x) = (x − 3)(x2 + a) and f (6) = 216. Find the value of a.
7 The graphs below have equations of the form shown. In each case, determine the
equation.
a y = a(x − h)3 + k b y = ax3 + bx2 c y = ax3
y y y
(1, 5) (1, 5)
(3, 2)
x x x
(–3, –1) (0, 0) (0, 0)
(–1, –5)
–25
4 4
(2, 3)
2 (1, 1) 2
(1, 0.75)
x x
–2 0 2 –2 0 2
–2 –2
(–2, –3) Note: This graph
–4 –4
is not of the form
y = a(x – h)3 + k.
For each of the following, use a CAS calculator to find the values of a, b, c, d in the
CAS
Example 32 9
cubic equation y = ax3 + bx2 + cx + d, given that the following points lie on its graph:
a (0, 270), (1, 312), (2, 230), (3, 0) b (−2, −406), (0, 26), (1, 50), (2, −22)
c (−2, −32), (2, 8), (3, 23), (8, 428) d (1, −1), (2, 10), (3, 45), (4, 116)
e (−3, −74), (−2, −23), (−1, −2), (1, −2) f (−3, −47), (−2, −15), (1, −3), (2, −7)
g (−4, 25), (−3, 7), (−2, 1), (1, −5)
When sketching quartic graphs of the form y = a(x − h)4 + k, first identify the turning point.
To add further detail to the graph, find the x-axis and y-axis intercepts.
Example 33
Sketch the graph of the function y = (x − 2)4 − 1.
Solution
Turning point is (2, −1). y
The implied domain of all quartics is R, but unlike cubics the range is not R.
Example 34
Solve each of the following equations for x:
a x4 − 8x = 0 b 2x4 − 8x2 = 0 c x4 − 2x3 − 24x2 = 0
Solution
a x4 − 8x = 0 b 2x4 − 8x2 = 0
Factorise to obtain Factorise to obtain
x(x3 − 8) = 0 2x2 (x2 − 4) = 0
∴ x = 0 or x3 − 8 = 0 ∴ 2x2 = 0 or x2 − 4 = 0
Thus x = 0 or x = 2. Thus x = 0 or x = 2 or x = −2.
c x4 − 2x3 − 24x2 = 0
Factorise to obtain x2 (x2 − 2x − 24) = 0
∴ x2 = 0 or x2 − 2x − 24 = 0
i.e. x = 0 or (x − 6)(x + 4) = 0
Thus x = 0 or x = 6 or x = −4.
Note that, if m and n are positive even integers with m > n, then:
xm > xn for x > 1 or x < −1
xm < xn for −1 < x < 1 with x , 0
xm = xn for x = 1 or x = −1 or x = 0.
Example 35
State whether each of the following polynomials is even or odd:
a f (x) = 6x4 − 3x2 b g(x) = 3x5 − x3 + x
c h(x) = x6 − 3x2 + 2 d m(x) = x7 − 4x
Solution
a f (−x) = 6(−x)4 − 3(−x)2 b g(−x) = 3(−x)5 − (−x)3 + (−x)
= 6x4 − 3x2 = −3x5 + x3 − x
= f (x) = −g(x)
The function is even. The function is odd.
6 2
c h(−x) = (−x) − 3(−x) + 2 d m(−x) = (−x)7 − 4(−x)
= x6 − 3x2 + 2 = −x7 + 4x
= h(x) = −m(x)
The function is even. The function is odd.
Example 36
a On the one set of axes sketch the graphs of f (x) = x4 and g(x) = 2x3 .
b Solve the equation f (x) = g(x).
c Solve the inequality f (x) ≤ g(x).
Solution
a y b f (x) = g(x)
x4 = 2x3
16 x4 − 2x3 = 0
x3 (x − 2) = 0
g(x) = 2x3 x = 0 or x = 2
f(x) = x4
2
x
–2 –1 –2 0 1 2
c f (x) ≤ g(x)
x4 ≤ 2x3
From the graphs and part b, we see that f (x) ≤ g(x) for x ∈ [0, 2].
Summary 6I
The graph of y = a(x − h)4 + k has the same shape as y = ax4 but is translated h units
in the positive x-axis direction and k units in the positive y-axis direction (for h and k
positive constants).
The implied domain of all quartic functions is R.
A function f is even if f (−x) = f (x). This means that the graph is symmetric about
the y-axis.
A function f is odd if f (−x) = − f (x). The graph of an odd function has rotational
symmetry with respect to the origin.
A power function is a function f with rule f (x) = xr where r is a non-zero real
number.
Exercise 6I
Example 33 1 Using the method of horizontal and vertical translations, sketch the graph of each of the
following:
a y = (x + 2)4 − 1 b y = (x − 1)4 − 1 c y = (x + 3)4 + 2
d y = (x − 2)4 + 5 e y = (x + 2)4 − 5
Use a CAS calculator to help draw the graph of each of the following. Give x-axis
CAS
4
intercepts and coordinates of turning points. (Values of coordinates of turning points to
be given correct to two decimal places.)
a y = x4 − 125x b y = (x2 − x − 20)(x2 − 2x − 24)
c y = x4 + 27x d y = x4 − 4x3
e y = x4 − 25x2 f y = 16 − x4
g y = x4 − 81x2 h y = x4 − 7x3 + 12x2
i y = x4 − 9x3 + 20x2 j y = (x2 − 16)(x2 − 25)
k y = (x − 2)(x2 + 2x + 10) l y = (x + 4)(x2 + 2x − 35)
Example 36 6 a On the one set of axes sketch the graphs of f (x) = x3 and g(x) = 2x2 .
b Solve the equation f (x) = g(x). c Solve the inequality f (x) ≤ g(x).
7 a On the one set of axes sketch the graphs of f (x) = x4 and g(x) = 9x2 .
b Solve the equation f (x) = g(x). c Solve the inequality f (x) ≤ g(x).
8 a On the one set of axes sketch the graphs of f (x) = x3 and g(x) = 4x.
b Solve the equation f (x) = g(x). c Solve the inequality f (x) ≤ g(x).
The graph of a quartic function can have zero, one, two, three or four x-axis intercepts.
CAS
9
For each of the following, find the number of x-axis intercepts of the graph:
a g(x) = x4 + 2 b g(x) = (x2 − 4)(x2 + 1) c g(x) = (x − 2)2 (x2 + 1)
d g(x) = (x2 − 4)(x2 − 1) e g(x) = x2 (x2 − 4) f g(x) = x4 + x2
Example 37
A square sheet of tin measures 12 cm × 12 cm.
Four equal squares of edge x cm are cut out of the
corners and the sides are turned up to form an open
rectangular box. Find: 12 cm
Solution
The figure shows how it is possible to form many x
open rectangular boxes with dimensions 12 − 2x,
12 − 2x and x. (12 − 2x)
The volume of the box is (12 − 2x)
V = x(12 − 2x)2 , 0≤x≤6
which is a cubic model.
We complete the solution using a CAS calculator as follows.
Example 38
It is found that 250 metres of the path of a y
stream can be modelled by a cubic function.
The cubic passes through the points (0, 0),
(100, 22), (150, −10), (200, −20).
a Find the equation of the cubic function. x
b Find the maximum deviation of the graph 0
from the x-axis for x ∈ [0, 250].
Store the values found for a, b, c, d as shown below. (You can use Edit > Copy and
> Paste. The symbol ⇒ is found in Math1 , Math2 and Math3 .)
Edit
The maximum value can be found in the main screen. Type f (x), highlight it and go
to Interactive > Calculation > fMin/fMax. Enter the required interval for x. Tap OK .
Alternatively, find the maximum value in Graph & Table . Enter and graph
y1 = f (x) and then use Analysis > G-Solve > Max.
Exercise 6J
CAS
Example 37 1
Four equal squares of edge length x cm are cut out of
the corners and the sides are turned up to form an open 20 cm
rectangular box.
a Find the length of each edge of the base of the box
x
in terms of x.
20 cm
b Find the volume, V cm3 , of the box in terms of x.
c Find the volume of the box when x = 5.
d Find the values of x for which the volume is 500 cm3 .
3 The outside surface area of an open box is 75 cm2 . The base is a square with each edge
x cm. Let h cm be the height of the box.
a Find the surface area of the box in terms of x and h.
b Hence, find h in terms of x.
c Find V in terms of x if V cm3 is the volume of the box.
d Find V when:
i x=2 ii x = 5 iii x = 8
e Given that V = 59 when x = 4, find the other value of x for which V = 59.
4 In an upright triangular prism, the triangular base has sides of length 5x cm, 12x cm
and 13x cm. The height of the prism is h cm. The sum of the lengths of all of its edges
is 180 cm.
a Find h in terms of x.
b Find V in terms of x, where V cm3 is the volume of the prism.
c Find V when x = 3.
d Find the values of x for which V = 1200.
The diagram shows a conical heap of gravel. The slant height of the heap is 8 m, the
CAS
5
radius of the base x m, and the height h m.
a Express x in terms of h.
b Construct a function which expresses V, the volume
of the heap in m3 , in terms of h.
c Use a CAS calculator to help draw the graph of V
h 8m
against h.
d State the domain for the function.
e Find the value of V when h = 4.
x
f Find the values of h for which V = 150.
g Find the maximum volume of the cone and the
corresponding value of h.
In general, consider an equation f (x) = 0 that has one solution α in the interval [a1 , b1 ].
The sign of f (a1 ) is the opposite of the sign of f (b1 ), because f (α) = 0 and so the
function must change from being positive to being negative or vice versa.
a1 + b1
Calculate m1 = and f (m1 ).
2
Choose the interval [a1 , m1 ] if f (a1 ) × f (m1 ) < 0, and the interval [m1 , b1 ] otherwise.
The process is then repeated with the new interval, and then repeatedly until the
required accuracy is reached.
Step 2 Choose −1.5 as the new left endpoint. Therefore the second interval is [−1.5, −1].
−1.5 + (−1)
Now m2 = = −1.25 and f (−1.25) = 0.296875 > 0.
2
Step 3 Choose −1.25 as the new right endpoint. Thus the third interval is [−1.5, −1.25].
−1.5 + (−1.25)
Now m3 = = −1.375 and f (−1.375) = −0.724609 < 0.
2
Step 4 Choose −1.375 as the new left endpoint. Thus the fourth interval is [−1.375, −1.25].
At this point we know that the solution is in the interval [−1.375, −1.25].
We continue with the spreadsheet as shown. This spreadsheet can be modified for other
functions.
Example 39
The equation x3 + 3x + 6 = 0 has one real solution, which lies in the interval [−2, −1].
Using pseudocode, write an algorithm to find this solution correct to within 0.01.
Solution Explanation
We use the bisection method.
define f (x):
Define the function f (x) = x3 + 3x + 6.
return x3 + 3x + 6
Assign initial values to the variables:
a ← −2 the left endpoint a, the right endpoint b
b ← −1 and the midpoint m.
m ← −1.5 We use a while loop, since we don’t
know how many iterations will be
while b − a > 2 × 0.01
required. We want to continue until
if f (a) × f (m) < 0 then b − a ≤ 2 × 0.01.
b←m • Use an ifthen block to update the
else value of the left endpoint a or the
a←m right endpoint b.
end if • Then recalculate the value of the
a+b midpoint m.
m←
2 • At the end of each pass of the loop,
print a, m, b, f (a), f (m), f (b) print the values of a, m, b, f (a), f (m)
end while and f (b).
print m After the while loop is complete, print
the value of m, which is the approximate
solution.
The following table shows the result of executing the algorithm from Example 39. The first
row gives the initial values of a, m, b, f (a), f (m) and f (b). The next rows give the values that
are printed at the end of each pass of the while loop.
After the 6th pass of the while loop, we have b − a = 0.015625 ≤ 0.02. So we exit the loop.
The final printed value of m is −1.289063. You can achieve greater accuracy by changing the
condition on the while loop.
Exercise 6K
1 Use a spreadsheet with the bisection method to find approximate solutions for each of
the following. The initial interval is given and the desired accuracy is stated.
a x3 − x − 1 = 0 [1, 2] 2 decimal places
4
b x +x−3=0 [1, 3] 3 decimal places
3
c x − 5x + 4.2 = 0 [1, 2] 3 decimal places
3 2
d x − 2x + 2x − 5 = 0 [2, 3] 3 decimal places
4 2
e 2x − 3x + 2x − 6 = 0 [−2, −1] 2 decimal places
Example 39 2 The equation −x3 + 3x + 6 = 0 has one real solution, which lies in the interval [2, 3].
Using pseudocode, write an algorithm to find this solution correct to within 0.001.
3 Let f (x) = −x3 − 3x + 6. The equation f (x) = 0 has only one real solution.
a Find f (1) and f (2). Hence give an interval that contains the solution.
b Use the bisection method to determine an approximate solution to f (x) = 0, correct
to two decimal places.
4 Show the results of the first three passes of the while loop when the pseudocode
algorithm in Example 39 is adapted for each of the following equations. The initial
values of the variables are given.
a 2x3 + 6x2 + 3 = 0 Initial values: a = −4, m = −3.5, b = −3
3 2
b 2x + 6x + 3x + 5 = 0 Initial values: a = −3, m = −2.5, b = −2
3 2
c 6x + 6x + 3x + 1 = 0 Initial values: a = −1, m = −0.5, b = 0
Review
Chapter summary
x
–1 0 1
–1
x
0
The graph of y = a(x − h)4 + k has the same shape as y = ax4 but is translated h units in
the positive x-axis direction and k units in the positive y-axis direction (where h and k are
positive constants). The turning point is at (h, k).
Sign diagrams assist in sketching graphs of cubic functions.
e.g. y = x3 + 2x2 − 5x − 6
= (x + 1)(x − 2)(x + 3)
When x < −3, y is negative. +
x
When −3 < x < −1, y is positive. –
–3 –2 –1 0 1 2
When −1 < x < 2, y is negative.
When x > 2, y is positive.
Steps for sketching the graph of a cubic function y = ax3 + bx2 + cx + d:
i Use the factor theorem and division to determine the x-axis intercepts.
ii The y-axis intercept is d.
iii Draw a sign diagram.
Finding equations for given cubic graphs:
i y ii y
x x
b 0 c h 0
Review
A function f is even if f (−x) = f (x). This means that the graph is symmetric about
the y-axis.
A function f is odd if f (−x) = − f (x). The graph of an odd function has rotational
symmetry with respect to the origin.
A power function is a function f with rule f (x) = xr where r is a non-zero real number.
Technology-free questions
4 a Use the factor theorem to show that 2x − 3 and x + 2 are factors of 6x3 + 5x2 − 17x − 6.
Find the other factor.
b Solve the equation 2x3 − 3x2 − 11x + 6 = 0.
c Solve the equation x3 + x2 − 11x − 3 = 8.
d i Show that 3x − 1 is a factor of 3x3 + 2x2 − 19x + 6.
ii Find the factors of 3x3 + 2x2 − 19x + 6.
6 Find the values of a and b for which x3 + ax2 − 10x + b is divisible by x2 + x − 12.
7 Draw a sign diagram for each of the following and hence sketch the graph:
a y = (x + 2)(3 − x)(x + 4) b y = (x − 2)(x + 3)(x − 4)
3 2
c y = 6x + 13x − 4 d y = x3 + x2 − 24x + 36
8 Without actually dividing, find the remainder when the first polynomial is divided by
the second:
a x3 + 4x2 − 5x + 1, x + 6 b 2x3 − 3x2 + 2x + 4, x − 2
c 3x3 + 2x + 4, 3x − 1
y
Review
x
–2 1 5
(0, –4)
10 Find a cubic function whose graph touches the x-axis at x = −4, passes through the
origin and has a value of 10 when x = 5.
11 Let f (x) = 2x3 + ax2 − bx + 3. When f (x) is divided by x − 2 the remainder is 15 and
f (1) = 0.
a Calculate the values of a and b. b Find the other two linear factors of f (x).
13 For each of the following, find a sequence of transformations that takes the graph of
y = x3 to the graph of:
a y = 2(x − 1)3 + 3 b y = −(x + 1)3 + 2 c y = (2x + 1)3 − 2
Multiple-choice questions
2 If a > b > c and P(x) = (x − a)2 (x − b)(x − c), then P(x) < 0 for x ∈
A (−∞, a) B (−∞, b) C (−∞, c) D (c, b) E (b, a)
3 The image of the graph of y = x3 under a dilation of factor 2 from the y-axis followed
by a reflection in the y-axis and then a translation of 4 units in the negative direction of
the y-axis is
x3 x3
A y=− −4 B y=− −4 C y = −8x3 − 4
8 2
x3 x3
D y=− +4 E y= +4
2 8
4 The equation x3 + 5x − 10 = 0 has only one solution. This solution lies between
A −2 and −1 B −1 and 0 C 0 and 1 D 1 and 2 E 2 and 8
√ √
5 Let P(x) = x4 + ax2 − 4. If P( 2) = 0 and P(− 2) = 0, the value of a is
A 0 B 2 C −2 D −3 E 3
Review
6 Let P(x) = x3 + ax2 + bx − 9. If P(1) = 0 and P(−3) = 0, the values of a and b are
A a = 1, b = −3 B a = −1, b = 3 C a = 5, b = 3
D a = −5, b = −3 E a = 0, b = 0
x
b 0 a
C D D y yy yy E E y yy yy
CC
CC
C y yy yy DD
DD EE
EE
x xx xx x xx xx x xx xx
–2 00 0 –2 0 0 22222 –2 00 0 22222
–2–2
–2–2 00 22222 –2–2 0 00
–2–2 –2–2
–2–2 00
–2 –2–2–2 –2
–2–2
–2–2 –2–2 –2–2
–2–2
Extended-response questions
CAS
1
a Write V(r) in terms of r.
b State the values that r can have.
c Find V(3).
d Find the values of r for which V(r) = 27π.
e Use your CAS calculator to find the maximum possible volume of the cylinder.
3 It is found that the shape of a branch of a eucalyptus tree can be modelled by a cubic
function. The coordinates of several points on the branch are (0, 15.8), (10, 14.5),
(15, 15.6), (20, 15). y
a The rule for the function is of the
form y = ax3 + bx2 + cx + d. Find the
values of a, b, c and d.
b Find the coordinates of the point on
the branch that is:
i closest to the ground 20 m
ii furthest from the ground.
x
0
Review
4 The figure shows part of a cubic graph that represents the relationship between the
engine speed, R × 1000 rpm, and the throttle setting, x mm from the closed position, for
a new engine. It can be seen from the graph that the engine has a ‘flat spot’ where an
increase in x has very little effect on R.
R
a Develop a cubic expression (rpm × 1000)
permitted
for R in terms of x of the form maximum
R = a(x − h)3 + k. 10 rpm
b Find a if when the graph is tick over
extended it passes through
0
the origin. 5 Throttle setting (mm) x
c In a proposed modification to the design, the ‘flat spot’ will occur when x = 7 mm.
The speed of the engine in this case will be 12 000 rpm when x = 7 mm.
Assuming that a cubic model still applies and that R = 0 when x = 0, write down an
expression for R as a function of x.
A net for making a cardboard box with overlapping flaps is shown in the figure. The
CAS
5
dotted lines represent cuts and the solid lines represent lines along which the cardboard
is folded.
w
Top Top Top Top
2
w
Bottom Bottom Bottom Bottom
2
ℓ w ℓ w
A reinforced box is made by cutting congruent squares of side length x cm from the
CAS
6
four corners of a rectangular piece of cardboard that measures 48 cm by 96 cm. The
flaps are folded up.
48 cm
96 cm