3

Write the polynomial of degree $4$ with $x$ intercepts of $(\frac{1}{2},0), (6,0) $ and $ (-2,0)$ and $y$ intercept of $(0,18)$. The root ($\frac{1}{2},0)$ has multiplicity $2$.

I am to write the factored form of the polynomial with the above information. I get:

$f(x)=-6\big(x-\frac{1}{2}\big)^2(x+2)(x-6)$

Whereas the provided solution is:

$f(x)=-\frac{3}{2}(2x-1)^2(x+2)(x-6)$

Here's my working:

Write out in factored form:

$f(x) = a\big(x-\frac{1}{2}\big)^2(x+2)(x-6)$

I know that $f(0)=18$ so:

$$18 = a\big(-\frac{1}{2}\big)^2(2)(-6)$$

$$18 = a\big(\frac{1}{4}\big)(2)(-6)$$

$$18 = -3a$$

$$a = -6$$

Thus my answer: $f(x)=-6\big(x-\frac{1}{2}\big)^2(x+2)(x-6)$

Where did I go wrong and how can I arrive at:

$f(x)=-\frac{3}{2}(2x-1)^2(x+2)(x-6)$ ?

Doug Fir
  • 2,266

3 Answers3

4

Both forms are equivalent: $$ -6(x-\frac{1}{2})^2(x+2)(x-6)\\ =-\frac{3}{2}\cdot 2^2(x-\frac{1}{2})^2(x+2)(x-6)\\ =-\frac{3}{2}(2(x-\frac{1}{2}))^2(x+2)(x-6)\\ =-\frac{3}{2}(2x-1)^2(x+2)(x-6) $$

E. Z. L.
  • 125
2

$$\Big(x-\dfrac{1}{2}\Big)^2 = \Big(\color{red}{\frac{1}{2}}\Big(2x-1\Big)\Big)^2=\color{red}{\frac{1}{4}}\Big(2x-1\Big)^2$$

Riccardo
  • 1,304
2

You didn't go wrong anywhere.

$-6(x-\frac{1}{2})^2(x+2)(x-6) = -\frac{3}{2}(2x-1)^2(x+2)(x-6)$

That is because

$-6(x- \frac 1{2})^2 = -6(\frac 12[2x-1])^2= -6\cdot (\frac 12)^2(2x-1)^2 = -6\cdot \frac 14(2x-1) = -\frac 32(2x-1)$.

Is there some rule that that says fractions in the $(ax + b)$ parts are frowned upon?

If so, if you get $(x + \frac ab)^k$ and can replace it with $(\frac 1b)^k(bx + a)^k$ but I don't see why you should have to.

(In fact, I much prefer your notation as it directly indicates the roots and solutions... and indicates what the leading coeficient will actually be when expanded out. And what the heck kind of sense does removing a horrifying offensive fraction from one area make if you are just going to have to put an equally offensive fraction somewhere else?)

But.... weren't you supposed to expand this out? So far as I can tell neither answer has done that. If you expand it out, you will see both answers are exactly the same.

fleablood
  • 124,253
  • Thanks for the info here. I see that in the first factor, I can get rid of the fraction x-1/2 by doubling everything within the parenthesis to get (2x-1). WHat I don't get is what to do with the power term and how -3/2 was arrived at? – Doug Fir Jul 28 '20 at 17:21
  • 1
    Well.... if you double everthing, you have to divide everything by two to even it out. $x - \frac 12 \ne 2x -1$ but $x-\frac 12 = \frac 122(x-\frac 12)= \frac 12(2x - 1)$. And when we square it we get $(x-\frac 12)^2 = [\frac 12(2x -1)]^2 = [\frac 1 2]^2 \cdot [(2x-1)^2]$ so we have to squar the $\frac 12$ to get $\frac 14$. And when we multiply our leading coefficient of $-6$ byt $\frac 14$ then $-6\times \frac 14 = -\frac 32$. That's all. – fleablood Jul 28 '20 at 21:01
  • 1
    Or working backwards.... $-6 (x-\frac 12)^2 = -\frac 32\times 4(x-\frac 12)^2 = -\frac 32[4(x-\frac 12)^2]=-\frac 32 [2^2(x-\frac 12)^2]=-\frac 32[2(x-\frac 12)]^2=-\frac 32[2x-1]^2$. – fleablood Jul 28 '20 at 21:04
  • 1
    ... or forward.... $-6(x-\frac 12)^2 = -6(\frac 12(2x -1))^2 = -6[(\frac 12)^2(2x-1)^2]=-6*\frac 14(2x-1)^2 = -\frac 32(2x-1)^2$ – fleablood Jul 28 '20 at 21:07
  • It shouldn't be a hard concept: $(x - \frac ab)^k = [\frac 1b(bx - a)]^k = \frac 1{b^k}(bx-a)^k$. That should be a a familiar concept. – fleablood Jul 28 '20 at 21:08
  • This is great! Thanks – Doug Fir Jul 28 '20 at 21:08