Skip to content

Polynomials -- Diagnostic Tests

Polynomials — Diagnostic Tests

Unit Tests

Tests edge cases, boundary conditions, and common misconceptions for polynomials.

UT-1: Factor Theorem Sign Confusion

Question:

Determine whether x+2x + 2 is a factor of P(x)=x3+3x24x8P(x) = x^3 + 3x^2 - 4x - 8.

Solution:

By the factor theorem, x+2x + 2 is a factor if and only if P(2)=0P(-2) = 0.

P(2)=(2)3+3(2)24(2)8=8+12+88=4P(-2) = (-2)^3 + 3(-2)^2 - 4(-2) - 8 = -8 + 12 + 8 - 8 = 4

Since P(2)=40P(-2) = 4 \neq 0, x+2x + 2 is not a factor.

A common mistake is testing P(2)P(2) instead of P(2)P(-2). The factor theorem states that (xa)(x - a) is a factor if P(a)=0P(a) = 0. Here the factor is x+2=x(2)x + 2 = x - (-2)So we test a=2a = -2.


UT-2: Remainder Theorem Application

Question:

When P(x)=2x3+ax25x+3P(x) = 2x^3 + ax^2 - 5x + 3 is divided by x2x - 2The remainder is 1111. When P(x)P(x) is divided by x+1x + 1The remainder is 4-4. Find aa and bb (if P(x)P(x) also has a constant term correction bb replacing 33), or find aa.

Solution:

By the remainder theorem:

P(2)=2(8)+4a10+3=16+4a7=4a+9=11    4a=2    a=12P(2) = 2(8) + 4a - 10 + 3 = 16 + 4a - 7 = 4a + 9 = 11 \implies 4a = 2 \implies a = \dfrac{1}{2}.

Verify: P(1)=2(1)+12(1)5(1)+3=2+12+5+3=6.5=4P(-1) = 2(-1) + \dfrac{1}{2}(1) - 5(-1) + 3 = -2 + \dfrac{1}{2} + 5 + 3 = 6.5 = -4?

Wait: P(1)=2(1)3+12(1)25(1)+3=2+12+5+3=132P(-1) = 2(-1)^3 + \dfrac{1}{2}(-1)^2 - 5(-1) + 3 = -2 + \dfrac{1}{2} + 5 + 3 = \dfrac{13}{2}.

But we need P(1)=4P(-1) = -4. There is no single value of aa satisfying both conditions simultaneously with the constant term fixed at 33. The problem as stated is inconsistent. This highlights the importance of verifying all conditions.

If instead the constant term is also a variable bb:

P(2)=4a+b+9=11    4a+b=2P(2) = 4a + b + 9 = 11 \implies 4a + b = 2.

P(1)=2+a+5+b=a+b+3=4    a+b=7P(-1) = -2 + a + 5 + b = a + b + 3 = -4 \implies a + b = -7.

Subtracting: 3a=9    a=33a = 9 \implies a = 3, b=10b = -10.


UT-3: Polynomial Division with Errors

Question:

Divide 2x35x2+x62x^3 - 5x^2 + x - 6 by x22x+3x^2 - 2x + 3.

Solution:

X22x+32x35x2+0x62x2x34x2+6x2x3x25x62x3x2+2x32x3x27x3\begin{array}{r|l} X^2 - 2x + 3 & 2x^3 - 5x^2 + \phantom{0}x - 6 \\ \hline & 2x \\ & 2x^3 - 4x^2 + 6x \\ \hline & \phantom{2x^3} - x^2 - 5x - 6 \\ & \phantom{2x^3} - x^2 + 2x - 3 \\ \hline & \phantom{2x^3} \phantom{- x^2} - 7x - 3 \\ \end{array}

Quotient: 2x12x - 1Remainder: 7x3-7x - 3.

Verify: (2x1)(x22x+3)+(7x3)(2x - 1)(x^2 - 2x + 3) + (-7x - 3)

=2x34x2+6xx2+2x37x3= 2x^3 - 4x^2 + 6x - x^2 + 2x - 3 - 7x - 3

=2x35x2+x6= 2x^3 - 5x^2 + x - 6. Correct.


UT-4: Vieta”s Formulas for Cubic

Question:

If α\alpha, β\beta, γ\gamma are the roots of x35x2+2x+8=0x^3 - 5x^2 + 2x + 8 = 0Find:

(a) α+β+γ\alpha + \beta + \gamma (b) αβ+βγ+γα\alpha\beta + \beta\gamma + \gamma\alpha (c) αβγ\alpha\beta\gamma

Solution:

By Vieta’s formulas for x3+px2+qx+r=0x^3 + px^2 + qx + r = 0:

α+β+γ=p=5\alpha + \beta + \gamma = -p = 5 αβ+βγ+γα=q=2\alpha\beta + \beta\gamma + \gamma\alpha = q = 2 αβγ=r=8\alpha\beta\gamma = -r = -8


UT-5: Finding Unknown Coefficients Given Factors

Question:

P(x)=x3+ax2+bx12P(x) = x^3 + ax^2 + bx - 12 has factors (x1)(x - 1) and (x+4)(x + 4). Find aa, bbAnd the remaining factor.

Solution:

Since (x1)(x - 1) is a factor: P(1)=1+a+b12=0    a+b=11P(1) = 1 + a + b - 12 = 0 \implies a + b = 11. … (1)

Since (x+4)(x + 4) is a factor: P(4)=64+16a4b12=0    16a4b=76    4ab=19P(-4) = -64 + 16a - 4b - 12 = 0 \implies 16a - 4b = 76 \implies 4a - b = 19. … (2)

From (1) + (2): 5a=30    a=65a = 30 \implies a = 6. Then b=5b = 5.

So P(x)=x3+6x2+5x12P(x) = x^3 + 6x^2 + 5x - 12.

Dividing by (x1)(x+4)=x2+3x4(x - 1)(x + 4) = x^2 + 3x - 4:

x3+6x2+5x12=(x2+3x4)(x+c)x^3 + 6x^2 + 5x - 12 = (x^2 + 3x - 4)(x + c)

Expanding RHS: x3+cx2+3x2+3cx4x4c=x3+(c+3)x2+(3c4)x4cx^3 + cx^2 + 3x^2 + 3cx - 4x - 4c = x^3 + (c+3)x^2 + (3c-4)x - 4c.

Matching: c+3=6    c=3c + 3 = 6 \implies c = 3.

The remaining factor is (x+3)(x + 3).


Integration Tests

Tests synthesis of polynomials with other topics.

IT-1: Polynomials and Inequalities (with Inequalities)

Question:

Let P(x)=(x1)(x24x+3)P(x) = (x - 1)(x^2 - 4x + 3). Find the set of values of xx for which P(x)0P(x) \leq 0.

Solution:

P(x)=(x1)(x1)(x3)=(x1)2(x3)P(x) = (x - 1)(x - 1)(x - 3) = (x - 1)^2(x - 3)

Critical values: x=1x = 1 (double root) and x=3x = 3.

IntervalTest(x1)2(x-1)^2(x3)(x-3)Product
x<1x < 1x=0x = 0++--
1<x<31 < x < 3x=2x = 2++--
x>3x > 3x=4x = 4++++++

P(x)0P(x) \leq 0 when x3x \leq 3 (including x=1x = 1 and x=3x = 3).

Therefore x(,  3]x \in (-\infty,\; 3].


IT-2: Polynomials and Functions (with Functions)

Question:

Let f(x)=x33x24x+12f(x) = x^3 - 3x^2 - 4x + 12. Given that (x2)(x - 2) is a factor, find all xx for which f(x)=0f(x) = 0And hence state the domain on which ff is one-to-one.

Solution:

P(2)=8128+12=0P(2) = 8 - 12 - 8 + 12 = 0. Confirmed.

Divide x33x24x+12x^3 - 3x^2 - 4x + 12 by (x2)(x - 2):

X2x33x24x+12x2x6x32x2x3x24xx3x2+2xx3x26x+12x3x26x+12x3x20\begin{array}{r|l} X - 2 & x^3 - 3x^2 - 4x + 12 \\ \hline & x^2 - x - 6 \\ & x^3 - 2x^2 \\ \hline & \phantom{x^3} - x^2 - 4x \\ & \phantom{x^3} - x^2 + 2x \\ \hline & \phantom{x^3 x^2} - 6x + 12 \\ & \phantom{x^3 x^2} - 6x + 12 \\ \hline & \phantom{x^3 x^2} 0 \\ \end{array}

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

Roots: x=2x = -2, x=2x = 2, x=3x = 3.

P(x)=(x2)(x3)(x+2)P(x) = (x - 2)(x - 3)(x + 2) is a cubic with positive leading coefficient, so it is strictly increasing when restricted to avoid the local maximum and minimum.

To make ff one-to-one, restrict to [2,  )[2,\; \infty) (after the local minimum at one of the turning points) or (,  2](-\infty,\; -2].


IT-3: Polynomials and Coordinate Geometry (with Coordinate Geometry)

Question:

The cubic curve y=x36x2+11x6y = x^3 - 6x^2 + 11x - 6 intersects the xx-axis at points AA, BBAnd CC. Find the coordinates of AA, BB, CC and the area of triangle ABCABC.

Solution:

x36x2+11x6=0x^3 - 6x^2 + 11x - 6 = 0

By inspection x=1x = 1: 16+116=01 - 6 + 11 - 6 = 0. So (x1)(x - 1) is a factor.

Dividing: x36x2+11x6=(x1)(x25x+6)=(x1)(x2)(x3)x^3 - 6x^2 + 11x - 6 = (x - 1)(x^2 - 5x + 6) = (x - 1)(x - 2)(x - 3).

Roots: x=1,2,3x = 1, 2, 3.

A = (1, 0)$$B = (2, 0)$$C = (3, 0).

Since all three points lie on the xx-axis, they are collinear, and the area of triangle ABCABC is 00.


Worked Examples

WE-1: Factor Theorem with Multiple Factors

Question:

Given that x - 1$$x + 2And x3x - 3 are factors of P(x)=x3+ax2+bx+cP(x) = x^3 + ax^2 + bx + cFind a$$bAnd cc.

Solution:

Since x - 1$$x + 2And x3x - 3 are all factors of the cubic P(x)P(x)We can write:

P(x)=(x1)(x+2)(x3)P(x) = (x - 1)(x + 2)(x - 3)

Expanding: (x1)(x2x6)=x3x26xx2+x+6=x32x25x+6(x - 1)(x^2 - x - 6) = x^3 - x^2 - 6x - x^2 + x + 6 = x^3 - 2x^2 - 5x + 6.

Therefore a = -2$$b = -5$$c = 6.


WE-2: Remainder When Dividing by Quadratic

Question:

When P(x)=x3+2x25x+1P(x) = x^3 + 2x^2 - 5x + 1 is divided by x2x2x^2 - x - 2Find the quotient and remainder.

Solution:

Since we divide a cubic by a quadratic, the remainder has degree at most 1: R(x)=Ax+BR(x) = Ax + B.

P(x)=Q(x)(x2x2)+Ax+BP(x) = Q(x)(x^2 - x - 2) + Ax + B

Factorising: x2x2=(x2)(x+1)x^2 - x - 2 = (x - 2)(x + 1).

P(2)=8+810+1=7=A(2)+B=2A+BP(2) = 8 + 8 - 10 + 1 = 7 = A(2) + B = 2A + B. … (1)

P(1)=1+2+5+1=7=A(1)+B=A+BP(-1) = -1 + 2 + 5 + 1 = 7 = A(-1) + B = -A + B. … (2)

(1) - (2): 3A=0    A=03A = 0 \implies A = 0. Then B=7B = 7.

Remainder =7= 7.

For the quotient: P(x)7=x3+2x25x6P(x) - 7 = x^3 + 2x^2 - 5x - 6.

Dividing by x2x2x^2 - x - 2: the leading term is xxGiving x(x2x2)=x3x22xx(x^2 - x - 2) = x^3 - x^2 - 2x.

P(x)7x(x2x2)=3x23x6=3(x2x2)P(x) - 7 - x(x^2 - x - 2) = 3x^2 - 3x - 6 = 3(x^2 - x - 2).

So Q(x)=x+3Q(x) = x + 3Remainder =7= 7.


WE-3: Using Factor Theorem to Fully Factorise

Question:

Fully factorise P(x)=2x3x213x6P(x) = 2x^3 - x^2 - 13x - 6.

Solution:

By the factor theorem, try integer factors of 6-6 divided by factors of 22: ±1,±2,±3,±6,±12,±32\pm 1, \pm 2, \pm 3, \pm 6, \pm \dfrac{1}{2}, \pm \dfrac{3}{2}.

P(3)=2(27)9396=5454=0P(3) = 2(27) - 9 - 39 - 6 = 54 - 54 = 0. So (x3)(x - 3) is a factor.

Divide 2x3x213x62x^3 - x^2 - 13x - 6 by (x3)(x - 3):

X32x3x213x62x22x36x22x35x213x2x35x215x2x3x22x62x3x22x62x3x20\begin{array}{r|l} X - 3 & 2x^3 - x^2 - 13x - 6 \\ \hline & 2x^2 \\ & 2x^3 - 6x^2 \\ \hline & \phantom{2x^3} 5x^2 - 13x \\ & \phantom{2x^3} 5x^2 - 15x \\ \hline & \phantom{2x^3 x^2} 2x - 6 \\ & \phantom{2x^3 x^2} 2x - 6 \\ \hline & \phantom{2x^3 x^2} 0 \\ \end{array}

P(x)=(x3)(2x2+5x+2)=(x3)(2x+1)(x+2)P(x) = (x - 3)(2x^2 + 5x + 2) = (x - 3)(2x + 1)(x + 2).


WE-4: Symmetric Sums of Roots

Question:

If \alpha$$\beta$$\gamma are the roots of 2x33x2+4x5=02x^3 - 3x^2 + 4x - 5 = 0Find 1α+1β+1γ\dfrac{1}{\alpha} + \dfrac{1}{\beta} + \dfrac{1}{\gamma}.

Solution:

By Vieta’s formulas (for ax3+bx2+cx+d=0ax^3 + bx^2 + cx + d = 0):

\alpha + \beta + \gamma = \dfrac{3}{2}$$\alpha\beta + \beta\gamma + \gamma\alpha = 2$$\alpha\beta\gamma = \dfrac{5}{2}.

1α+1β+1γ=αβ+βγ+γααβγ=25/2=45\frac{1}{\alpha} + \frac{1}{\beta} + \frac{1}{\gamma} = \frac{\alpha\beta + \beta\gamma + \gamma\alpha}{\alpha\beta\gamma} = \frac{2}{5/2} = \frac{4}{5}


WE-5: Finding the Remainder Without Division

Question:

Find the remainder when x100+x50+1x^{100} + x^{50} + 1 is divided by x21x^2 - 1.

Solution:

x21=(x1)(x+1)x^2 - 1 = (x - 1)(x + 1).

Remainder has the form Ax+BAx + B.

At x=1x = 1: P(1)=1+1+1=3=A+BP(1) = 1 + 1 + 1 = 3 = A + B. … (1)

At x=1x = -1: P(1)=1+1+1=3=A+BP(-1) = 1 + 1 + 1 = 3 = -A + B. … (2)

(1) + (2): 2B = 6 \implies B = 3$$A = 0.

Remainder =3= 3.


WE-6: Polynomial Identity Method

Question:

Find constants A$$B$$C such that 3x+7(x+1)(x+2)=Ax+1+Bx+2\dfrac{3x + 7}{(x + 1)(x + 2)} = \dfrac{A}{x + 1} + \dfrac{B}{x + 2}.

Solution:

3x+7=A(x+2)+B(x+1)3x + 7 = A(x + 2) + B(x + 1)

At x=1x = -1: 3+7=A(1)+0    A=4-3 + 7 = A(1) + 0 \implies A = 4.

At x=2x = -2: 6+7=0+B(1)    B=1-6 + 7 = 0 + B(-1) \implies B = -1.

Verification: 4x+11x+2=4(x+2)(x+1)(x+1)(x+2)=4x+8x1(x+1)(x+2)=3x+7(x+1)(x+2)\dfrac{4}{x+1} - \dfrac{1}{x+2} = \dfrac{4(x+2) - (x+1)}{(x+1)(x+2)} = \dfrac{4x + 8 - x - 1}{(x+1)(x+2)} = \dfrac{3x + 7}{(x+1)(x+2)}. Correct.


WE-7: Reciprocal Equation Roots

Question:

If α\alpha and β\beta are the roots of 2x2+3x4=02x^2 + 3x - 4 = 0Find the equation whose roots are 1α2\dfrac{1}{\alpha^2} and 1β2\dfrac{1}{\beta^2}.

Solution:

α+β=32\alpha + \beta = -\dfrac{3}{2}, αβ=2\alpha\beta = -2.

α2+β2=(α+β)22αβ=94+4=254\alpha^2 + \beta^2 = (\alpha + \beta)^2 - 2\alpha\beta = \frac{9}{4} + 4 = \frac{25}{4}

α2β2=4\alpha^2 \beta^2 = 4

1α2+1β2=α2+β2α2β2=25/44=2516\frac{1}{\alpha^2} + \frac{1}{\beta^2} = \frac{\alpha^2 + \beta^2}{\alpha^2 \beta^2} = \frac{25/4}{4} = \frac{25}{16}

1α21β2=14\frac{1}{\alpha^2} \cdot \frac{1}{\beta^2} = \frac{1}{4}

Required equation: x22516x+14=0x^2 - \dfrac{25}{16}x + \dfrac{1}{4} = 0I.e. 16x225x+4=016x^2 - 25x + 4 = 0.


WE-8: Polynomial Graph Behaviour

Question:

For P(x)=x4+4x23P(x) = -x^4 + 4x^2 - 3Find:

(a) The xx-intercepts. (b) The yy-intercept. (c) The maximum value of P(x)P(x).

Solution:

(a) x4+4x23=0    x44x2+3=0-x^4 + 4x^2 - 3 = 0 \implies x^4 - 4x^2 + 3 = 0.

Let u=x2u = x^2: u24u+3=0    (u1)(u3)=0u^2 - 4u + 3 = 0 \implies (u-1)(u-3) = 0.

u=1    x=±1u = 1 \implies x = \pm 1. u=3    x=±3u = 3 \implies x = \pm\sqrt{3}.

xx-intercepts: (3,0),(1,0),(1,0),(3,0)(-\sqrt{3}, 0), (-1, 0), (1, 0), (\sqrt{3}, 0).

(b) P(0)=3P(0) = -3. yy-intercept: (0,3)(0, -3).

(c) Let v=x20v = x^2 \geq 0. P(x)=(v24v+3)=(v2)2+43=(v2)2+1P(x) = -(v^2 - 4v + 3) = -(v - 2)^2 + 4 - 3 = -(v-2)^2 + 1.

Maximum is 11 when v=2v = 2I.e. x2=2x^2 = 2So x=±2x = \pm\sqrt{2}.


Common Pitfalls

  1. Testing the wrong value in the factor theorem. For the factor (xa)(x - a)You must evaluate P(a)P(a)Not P(a)P(-a). For (x+a)(x + a)Evaluate P(a)P(-a). The sign is the most common source of error in factor theorem problems.

  2. Not verifying the factorisation. After polynomial division, always expand the quotient times divisor plus remainder to verify you get back the original polynomial. This catches arithmetic errors.

  3. Incorrect Vieta’s sign conventions. For ax3+bx2+cx+d=0ax^3 + bx^2 + cx + d = 0: sum of roots =b/a= -b/aSum of pairwise products =c/a= c/aProduct =d/a= -d/a. The alternating signs are easy to confuse.

  4. Assuming a polynomial has rational roots. Not all polynomials factorise with rational roots. If the rational root theorem yields no valid candidates, the polynomial may have irrational or complex roots.

  5. Forgetting the degree of the remainder. When dividing by a polynomial of degree mmThe remainder has degree less than mm. Dividing by a quadratic gives a linear (or constant) remainder, not a quadratic one.


DSE Exam-Style Questions

DSE-1

Let P(x)=x34x2+x+6P(x) = x^3 - 4x^2 + x + 6.

(a) Show that (x+1)(x + 1) is a factor of P(x)P(x). (1 mark) (b) Hence factorise P(x)P(x) completely. (3 marks) (c) Solve P(x)=0P(x) = 0. (1 mark) (d) Sketch the graph of y=P(x)y = P(x)Indicating the xx-intercepts and the yy-intercept. (3 marks)

Solution:

(a) P(1)=141+6=0P(-1) = -1 - 4 - 1 + 6 = 0. Confirmed.

(b) Divide by (x+1)(x + 1): x34x2+x+6=(x+1)(x25x+6)=(x+1)(x2)(x3)x^3 - 4x^2 + x + 6 = (x+1)(x^2 - 5x + 6) = (x+1)(x-2)(x-3).

(c) x=1x = -1, x=2x = 2, x=3x = 3.

(d) yy-intercept: (0,6)(0, 6). xx-intercepts: (-1, 0)$$(2, 0)$$(3, 0). The cubic has positive leading coefficient, so it goes from bottom-left to top-right, crossing the xx-axis at each root.


DSE-2

When P(x)=2x3+px2+qx+3P(x) = 2x^3 + px^2 + qx + 3 is divided by (x1)(x - 1)The remainder is 66. When divided by (x+2)(x + 2)The remainder is 15-15.

(a) Find pp and qq. (4 marks) (b) Find the remainder when P(x)P(x) is divided by (x2)(x+1)(x - 2)(x + 1). (3 marks)

Solution:

(a) P(1)=2+p+q+3=6    p+q=1P(1) = 2 + p + q + 3 = 6 \implies p + q = 1. … (1)

P(2)=16+4p2q+3=15    4p2q=2    2pq=1P(-2) = -16 + 4p - 2q + 3 = -15 \implies 4p - 2q = -2 \implies 2p - q = -1. … (2)

(1) + (2): 3p = 0 \implies p = 0$$q = 1.

(b) P(x)=2x3+x+3P(x) = 2x^3 + x + 3.

Remainder when divided by (x2)(x+1)(x-2)(x+1): let R(x)=Ax+BR(x) = Ax + B.

P(2)=16+2+3=21=2A+BP(2) = 16 + 2 + 3 = 21 = 2A + B. … (1)

P(1)=21+3=0=A+BP(-1) = -2 - 1 + 3 = 0 = -A + B. … (2)

(1) + (2): 3B = 21 \implies B = 7$$A = 7.

Remainder =7x+7= 7x + 7.


DSE-3

The equation x3+ax2+bx+c=0x^3 + ax^2 + bx + c = 0 has roots \alpha$$\beta$$\gamma where \alpha + \beta + \gamma = 6$$\alpha\beta + \beta\gamma + \gamma\alpha = 11And αβγ=6\alpha\beta\gamma = 6.

(a) Find a$$bAnd cc. (2 marks) (b) Find the values of α2+β2+γ2\alpha^2 + \beta^2 + \gamma^2. (2 marks) (c) Find the equation whose roots are \alpha + 1$$\beta + 1$$\gamma + 1. (3 marks)

Solution:

(a) a = -6$$b = 11$$c = -6.

Equation: x36x2+11x6=0=(x1)(x2)(x3)x^3 - 6x^2 + 11x - 6 = 0 = (x-1)(x-2)(x-3).

(b) α2+β2+γ2=(α+β+γ)22(αβ+βγ+γα)=3622=14\alpha^2 + \beta^2 + \gamma^2 = (\alpha + \beta + \gamma)^2 - 2(\alpha\beta + \beta\gamma + \gamma\alpha) = 36 - 22 = 14.

(c) Sum of new roots: (α+1)+(β+1)+(γ+1)=6+3=9(\alpha+1) + (\beta+1) + (\gamma+1) = 6 + 3 = 9.

Sum of pairwise products: (α+1)(β+1)+(β+1)(γ+1)+(γ+1)(α+1)=(αβ+α+β+1)+=11+2×6+3=26(\alpha+1)(\beta+1) + (\beta+1)(\gamma+1) + (\gamma+1)(\alpha+1) = (\alpha\beta + \alpha + \beta + 1) + \ldots = 11 + 2 \times 6 + 3 = 26.

Product: (α+1)(β+1)(γ+1)=αβγ+(αβ+βγ+γα)+(α+β+γ)+1=6+11+6+1=24(\alpha+1)(\beta+1)(\gamma+1) = \alpha\beta\gamma + (\alpha\beta + \beta\gamma + \gamma\alpha) + (\alpha + \beta + \gamma) + 1 = 6 + 11 + 6 + 1 = 24.

Equation: x39x2+26x24=0x^3 - 9x^2 + 26x - 24 = 0.


DSE-4

(a) Express 5x1(x+2)(2x1)\dfrac{5x - 1}{(x + 2)(2x - 1)} in partial fractions. (4 marks) (b) Hence find 5x1(x+2)(2x1)dx\displaystyle\int \frac{5x - 1}{(x + 2)(2x - 1)} \, dx. (2 marks)

Solution:

(a) 5x1(x+2)(2x1)=Ax+2+B2x1\dfrac{5x - 1}{(x + 2)(2x - 1)} = \dfrac{A}{x + 2} + \dfrac{B}{2x - 1}.

5x1=A(2x1)+B(x+2)5x - 1 = A(2x - 1) + B(x + 2).

At x=2x = -2: 11=A(5)    A=115-11 = A(-5) \implies A = \dfrac{11}{5}.

At x=12x = \dfrac{1}{2}: 521=B(52)    B=1\dfrac{5}{2} - 1 = B\left(\dfrac{5}{2}\right) \implies B = 1.

5x1(x+2)(2x1)=11/5x+2+12x1\frac{5x - 1}{(x + 2)(2x - 1)} = \frac{11/5}{x + 2} + \frac{1}{2x - 1}

(b) (11/5x+2+12x1)dx=115lnx+2+12ln2x1+C\displaystyle\int \left(\frac{11/5}{x+2} + \frac{1}{2x-1}\right) dx = \frac{11}{5}\ln|x + 2| + \frac{1}{2}\ln|2x - 1| + C.


DSE-5

P(x)=x4+ax3+bx2+cx+dP(x) = x^4 + ax^3 + bx^2 + cx + d has roots 1,1,2,31, -1, 2, -3.

(a) Find aa, bb, cc, dd. (3 marks) (b) Find the value of P(1)P'(1). (3 marks)

Solution:

(a) P(x)=(x1)(x+1)(x2)(x+3)=(x21)(x2+x6)=x4+x36x2x2x+6=x4+x37x2x+6P(x) = (x-1)(x+1)(x-2)(x+3) = (x^2 - 1)(x^2 + x - 6) = x^4 + x^3 - 6x^2 - x^2 - x + 6 = x^4 + x^3 - 7x^2 - x + 6.

a = 1$$b = -7$$c = -1$$d = 6.

(b) P(x)=4x3+3x214x1P'(x) = 4x^3 + 3x^2 - 14x - 1.

P(1)=4+3141=8P'(1) = 4 + 3 - 14 - 1 = -8.