Division (mathematics) Article Index for
Division
Website Links For
Division
 

Information About

Division (mathematics)




In Mathematics , especially in elementary Arithmetic , division is an arithmetic operation which is the inverse of Multiplication , and sometimes it can be interpreted as repeated Subtraction .

Specifically, if ''c'' times ''b'' equals ''a'', written:
:c imes b = a
where ''b'' is not Zero , then ''a'' divided by ''b'' equals ''c'', written:
: rac ab = c
For instance,
: rac 63 = 2
since
:2 imes 3 = 6\,.

In the above expression, ''a'' is called the dividend, ''b'' the '''divisor''' and ''c'' the '''quotient'''.

Division By Zero (i.e. where the divisor is zero) is usually not defined.


NOTATION

Division is most often shown by placing the ''dividend'' over the ''divisor'' with a horizontal line between them. For example, ''a'' divided by ''b'' is written
: rac ab.
This can be read out loud as "a divided by b" or "a over b". A way to express division all on one line is to write the ''dividend'', then a Slash , then the ''divisor'', like this:
:a/b.\,
This is the usual way to specify division in most computer Programming Language s since it can easily be typed as a simple sequence of characters.

A typographical variation which is halfway between these two forms uses a slash but elevates the dividend, and lowers the divisor:

:''a''''b'' .

Any of these forms can be used to display a Fraction . A fraction is a division expression where both dividend and divisor are Integer s (although typically called the ''numerator'' and ''denominator''), and there is no implication that the division needs to be evaluated further.

A less common way to show division is to use the Obelus (or division sign) in this manner:
:a \div b.
This form is infrequent except in elementary arithmetic. The obelus is also used alone to represent the division operation itself, as for instance as a label on a key of a Calculator .

In some non- is restricted to expressing the related concept of Ratio s.


COMPUTING DIVISION

With a knowledge of Multiplication Tables , two integers can be divided on paper using the method of Long Division . If the dividend has a Fraction al part (expressed as a Decimal Fraction ), one can continue the algorithm past the ones place as far as desired. If the divisor has a fractional part, one can restate the problem by moving the decimal to the right in both numbers until the divisor has no fraction.

Division can be calculated with an Abacus by repeatedly placing the dividend on the abacus, and then subtracting the divisor the offset of each digit in the result, counting the number of divisions possible at each offset.

In Modular Arithmetic , some numbers have a multiplicative inverse with respect to the modulus. In such a case, division can be calculated by multiplication. This approach is useful in computers that do not have a fast division instruction.


DIVISION OF INTEGERS


Division of integers is not closed. Apart from division by zero being undefined, the quotient will not be an integer unless the dividend is an integer multiple of the divisor; for example 26 cannot be divided by 10 to give an integer. In such a case there are four possible approaches.
# Say that 26 cannot be divided by 10.
# Give the answer as a Decimal Fraction or a Mixed Number , so rac{26}{10} = 2.6 or 26/10 = 2 rac 35. This is the approach usually taken in mathematics.
# Give the answer as a '' Quotient '' and a '' Remainder '', so rac{26}{10} = 2 remainder 6.
# Give the quotient as the answer, so rac{26}{10} = 2. This is sometimes called ''integer division''.

One has to be careful when performing division of integers in a Computer Program . Some Programming Language s, such as C , will treat division of integers as in case 4 above, so the answer will be an integer. Other languages, such as MATLAB , will first convert the integers to real numbers, and then give a real number as the answer, as in case 2 above.


DIVISION OF RATIONAL NUMBERS


The result of dividing two Rational Number s is another rational number when the divisor is not 0. We may define division of two rational numbers ''p''/''q'' and ''r''/''s'' by

:{p/q \over r/s} = (p imes s)/(q imes r).

All four quantities are integers, and only ''p'' may be 0. This definition ensures that division is the inverse operation of multiplication.


DIVISION OF REAL NUMBERS


Division of two Real Number s results in another real number when the divisor is not 0. It is defined such ''a''/''b'' = ''c'' if and only if ''a'' = ''cb'' and ''b'' ≠ 0.


DIVISION OF COMPLEX NUMBERS


Dividing two Complex Number s results in another complex number when the divisor is not 0, defined thus:

:{p + iq \over r + is} = {pr + qs \over r^2 + s^2} + i{qr - ps \over r^2 + s^2}.

All four quantities are real numbers. ''r'' and ''s'' may not both be 0.

Division for complex numbers expressed in polar form is simpler and easier to remember than the definition above:

:{pe^{iq} \over re^{is}} = {p \over r}e^{i(q - s)}.

Again all four quantities are real numbers. ''r'' may not be 0.


DIVISION OF POLYNOMIALS

One can define the division operation for Polynomial s. Then, as in the case of integers, one has a remainder. See Polynomial Long Division .


DIVISION IN ABSTRACT ALGEBRA


In Abstract Algebra s such as Matrix algebras and Quaternion algebras, fractions such as {a \over b} are typically defined as a \cdot {1 \over b} or a \cdot b^{-1} where b is presumed to be an invertible element (i.e. there exists a multiplicative inverse b^{-1} such that bb^{-1} = b^{-1}b = 1 where 1 is the multiplicative identity). In an Integral Domain where such elements may not exist, ''division'' can still be performed on equations of the form ab = ac or ba = ca by left or right cancellation, respectively. More generally "division" in the sense of "cancellation" can be done in any Ring with the aforementioned cancellation properties. By a Theorem Of Wedderburn , all finite Division Ring s are fields, hence every nonzero element of such a ring is invertible, so ''division'' by any nonzero element is possible in such a ring. To learn about when ''algebras'' (in the technical sense) have a division operation, refer to the page on Division Algebra s. In particular Bott Periodicity can be used to show that any Real Normed Division Algebra must be Isomorphic to either the real numbers R, the Complex Number s '''C''', the Quaternion s '''H''', or the Octonion s '''O'''.



DIVISION AND CALCULUS


The Derivative of the quotient of two functions is given by the Quotient Rule :

:{\left( rac fg ight)}' = rac{f'g - fg'}{g^2}

There is no general method to Integrate the quotient of two functions.


SEE ALSO



EXTERNAL LINKS