0

How do I multiply a non-absolute value with an absolute value? For example: |x-1| to be multiplied with x^2? I got an answer of x^2|x-1| but I'm pretty sure it's wrong.

Thank you!

shhh
  • 35

2 Answers2

1

Just $$x^2|x-1|.$$ Alternate forms are: $$|x^3-x^2| = \sqrt{(x^3-x^2)^2} = x^2 \sqrt{(x-1)^2}.$$

T C Molenaar
  • 580
  • 3
  • 15
0

If you want to take off the modulus, follow this procedure:

We know $(x-1)\geq 0$ for $x\geq1$ and less than zero for $x<1$. Then, we will have: $$x^2|x-1| = \begin{cases} x^2(x-1) &\mbox{if }x\geq 1\\x^2(1-x)&\mbox{if }x<1\end{cases}$$

Can you do likewise for the case of addition as well?