Education
 

Absolute value

From Psychology Wiki

Community portal · Tasks to do · News · Help

Clinical · Educational · Ind&Org · Other fields · Professional · Transpersonal · World

Assessment | Biopsychology | Comparative | Cognitive | Developmental | Language
Personality | Philosophy | Research Methods | Social | Statistics

Statistics: Scientific method · Research methods · Experimental design · Undergraduate statistics courses · Statistical tests · Game theory · Decision theory


In mathematics, the absolute value (or modulus1) of a real number is its numerical value without regard to its sign. So, for example, 3 is the absolute value of both 3 and −3. In computers, the mathematical function used to perform this calculation is usually given the name abs().

Generalizations of the absolute value for real numbers occur in a wide variety of mathematical settings. For example an absolute value is also defined for the complex numbers, the quaternions, ordered rings, fields and vector spaces.

The absolute value is closely related to the notions of magnitude, distance, and norm in various mathematical and physical contexts.

The graph of the absolute value function for real numbers.

Contents

[edit] Real numbers

For any real number math the absolute value or modulus of math is denoted 2 math and is defined as

math

As can be seen from the above definition, the absolute value of math is always either positive or zero, never negative.

From a geometric point of view, the absolute value of a real number is the distance along the real number line of that number from zero, and more generally the absolute value of the difference of two real numbers is the distance between them. Indeed the notion of an abstract distance function in mathematics can be seen to be a generalization of the properties of the absolute value (see "Distance" below).

The following proposition, gives an identity which is sometimes used as an alternative (and equivalent) definition of the absolute value:

PROPOSITION 1:

math

The absolute value has the following four fundamental properties:

PROPOSITION 2:

math Non-negativity
math Positive-definiteness
math Multiplicativeness
math Subadditivity

Other important properties of the absolute value include:

PROPOSITION 3:

math Symmetry
math Identity of indiscernibles (equivalent to positive-definiteness)
math Triangle inequality (equivalent to subadditivity)
math Preservation of division (equivalent to multiplicativeness)
math (equivalent to subadditivity)

Two other useful inequalities are:

math
math

The above are often used in solving inequalities; for example:

math math
math

[edit] Complex numbers

image:complex.png

Since the complex numbers are not ordered, the definition given above for the real absolute value cannot be directly generalized for a complex number. However the identity given in Proposition 1:

math

can be seen as motivating the following definition.

For any complex number

math

the absolute value or modulus of math is denoted math and is defined as

math

It follows that the absolute value of a real number x is equal to its absolute value considered as a complex number since:

math

Similar to the geometric interpretation of the absolute value for real numbers, it follows from the Pythagorean theorem that the absolute value of a complex number is the distance in the complex plane of that complex number from the origin, and more generally, that the absolute value of the difference of two complex numbers is equal to the distance between those two complex numbers.

The complex absolute value shares all the properties of the real absolute value given in Propositions 2 and 3 above. In addition, If

math

and

math

is the complex conjugate of math, then it is easily seen that

math
math
math

[edit] Absolute value functions

The real absolute value function is continuous everywhere. It is differentiable everywhere except for x = 0. It is monotonically decreasing on the interval (-∞, 0] and monotonically increasing on the interval [0, ∞). Since a real number and its negative have the same absolute value, it is an even function, and is hence not invertible.

The complex absolute value function is continuous everywhere but differentiable nowhere (One way to see this is to show that it does not obey the Cauchy-Riemann equations).

Both the real and complex functions are idempotent.

[edit] Ordered rings

The definition of absolute value given for real numbers above can easily be extended to any ordered ring. That is, if math is an element of an ordered ring math, then the absolute value of math, denoted by math, is defined to be:

math

where math is the additive inverse of math, and math is the additive identity element.

[edit] Distance

The absolute value is closely related to the idea of distance. As noted above, the absolute value of a real or complex number is the distance from that number to the origin, along the real number line, for real numbers, or in the complex plane, for complex numbers, and more generally, the absolute value of the difference of two real or complex numbers is the distance between them.

The standard Euclidean distance between two points

math

and

math

in Euclidean n-space is defined as:

math

This can be seen to be a generalization of math since if math math are real, then by Proposition 1,

math

while if

math

and

math

are complex numbers, then

math math
math
math

The above shows that the "absolute value" distance for the real numbers or the complex numbers, agrees with the standard Euclidean distance they inherit as a result of considering them as the one and two-dimensional Euclidean spaces respectively.

The properties of the absolute value of the difference of two real or complex numbers: non-negativity, identity of indiscernibles, symmetry and the triangle inequality given in Propositions 2 and 3 above, can be seen to motivate the more general notion of a distance function as follows:

A real valued function math on a set math is called a distance function (or a metric) for math, if it satisfies the following four axioms:

math Non-negativity
math Identity of indiscernibles
math Symmetry
math Triangle inequality

[edit] Fields

The fundamental properties of the absolute value for real numbers given in Proposition 2 above, can be used to generalize the notion of absolute value to an arbitrary field, as follows.

A real-valued function math on a field math is called an absolute value (also a modulus, magnitude, value, or valuation) if it satisfies the following four axioms:

math Non-negativity
math Positive-definiteness
math Multiplicativeness
math Subadditivity or the triangle inequality

It follows from the above that math, where math denotes the multiplicative identity element of math. The real and complex absolute values defined above are examples of absolute values for an arbitrary field.

If math is an absolute value on math, then the function math on math, defined by math, is a metric, and if math is the multiplicative identity in math, then the following are equivalent:

  • math for every math
  • math for all math

An absolute value which satisfies any (hence all) of the above conditions is said to be non-Archimedean, otherwise it is said to be Archimedean.3

[edit] Vector spaces

Again the fundamental properties of the absolute value for real numbers, can be used, with a slight modification, to generalize the notion to an arbitrary vector space.

A real valued function ||·|| on a vector space math a over a field math, is called an absolute value (or more usually a norm) if it satisfies the following axioms:

For all math in math, and math, math in math,

math Non-negativity
math Positive-definiteness
math Positive homogeneity or positive scalability
math Subadditivity or triangle inequality

The norm of a vector is also called its length or magnitude.

In the case of Euclidean space Rn, the function

math

is a norm called the Euclidean norm. When the real numbers R are considered as the one-dimensional vector space R1, the absolute value is a norm, and is the p-norm for any p. In fact the absolute value is the "only" norm in R1, in the sense that, for every norm ||·|| in R1, ||x||=||1||·|x|. The complex absolute value is a special case of the norm in an inner product space. It is identical to the Euclidean norm, if the complex plane is identified with the Euclidean plane R2.

[edit] Algorithms

In the C programming language, the abs(), labs(), llabs() (in C99), fabs(), fabsf(), and fabsl() functions compute the absolute value of an operand. Coding the integer version of the function is trivial, ignoring the boundary case where the largest negative integer is input:

int abs(int i)
{
    if (i < 0)
        return -i;
    else
        return i;
}

The floating-point versions are trickier, as they have to contend with special codes for infinity and not-a-numbers.

Using assembly language, it is possible to take the absolute value of a register in just three instructions (example shown for a 32-bit register on an x86 architecture, Intel syntax):

cdq
xor eax, edx
sub eax, edx

cdq extends the sign bit of eax into edx. If eax is nonnegative, then edx becomes zero, and the latter two instructions have no effect, leaving eax unchanged. If eax is negative, then edx becomes 0xFFFFFFFF, or -1. The next two instructions then become a two's complement inversion, giving the absolute value of the negative value in eax.

[edit] See also

[edit] References & Bibliography

This article or section needs to be wikified. Please format this article according to the guidelines laid out at Psychology wiki:Guide to layout. Please remove this template after wikifying.

[edit] Notes

1 Jean-Robert Argand, is credited with introducing the term "modulus" in 1806, see: Nahin, O'Connor and Robertson, and functions.Wolram.com.
2 functions.Wolram.com credits Karl Weierstrass with introducing the notation |x| in 1841.

[edit] External links

Smallwikipedialogo.png This page uses content from the English-language version of Wikipedia. The original article was at Absolute_value. The list of authors can be seen in the page history. As with Psychology Wiki, the text of Wikipedia is available under the GNU Free Documentation License.