How is it possible to overwrite the expressions without using the modulus sign:
a) |a²|;
b) |a − b|, if a > b;
c) |a − b|, if a < b;
d) | − a|, if a is negative?
1
Expert's answer
2010-07-13T04:55:53-0400
a) Since a² cannot be negative, its absolute value is also a². Thus, |a²| = a²; b) Since a > b, |a − b| = (a − b); c) Since a < b, |a − b| = (b − a); d) Since a < 0, | − a| = −a.
Comments
Leave a comment