Convert any number to positive. How?
With a calculator, you could make a number positive in one of two (simple) ways:
- $\text{abs}(x)$
- $\sqrt{(x^2)}$
The first one is recommended, but the second one will work as well as the square root function on most calculators returns the positive root. Squaring a real number always makes it positive, so taking the square root of a number squared returns the positive number.
You just have to simply multiply by $-1$. For example if you have a number $-a$ then multiply by $-1$ to get $-a \times -1 =a$. If the number is positive then multiply by $1$.
Or if you are aware of the Absolute Value, then take the absolute value of the number.