Question 1102474
{{{sgn(b)}}}{{{"="}}}{{{system("-1 , b<0","1 , b>=0")}}}
If {{{b}}}= any real number,
{{{abs(b)sgn(b)}}}{{{"="}}}{{{system("-1 | b | = -1 ( - b ) = b, b<0","1 | b | = | b | = b , b>=0")}}}{{{"= b"}}} , so {{{highlight(abs(b)sgn(b)=b)}}} .
For non-negative numbers, {{{b>=0}}} ,
the signum function returns 1,
the absolute value function returns the original number, 
and the product of the returned values is the original number.
For negative numbers,
the signum function returns {{{-1}}} ,
the absolute value function returns the positive opposite of the original number,
and the product of the returned values is the original number.
In other words, for negative numbers,
the absolute value takes away the minus sign,
but the signum function then reapplies the minus sign that the absolute value function took away.