Division (mathematics)

From Wikipedia, the free encyclopedia

(Redirected from Divided)
Jump to: navigation, search

In mathematics, especially in elementary arithmetic, division is an arithmetic operation which is the inverse of multiplication.

Specifically, if c times b equals a, written:

c \times b = a\,

where b is not zero, then a divided by b equals c, written:

\frac ab = c

For instance,

\frac 63 = 2

since

2 \times 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 not defined.

Contents

Division is most often shown by placing the dividend over the divisor with a horizontal line, also called a vinculum, between them. For example, a divided by b is written

\frac 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 languages since it can easily be typed as a simple sequence of characters.

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

ab .

Any of these forms can be used to display a fraction. A fraction is a division expression where both dividend and divisor are integers (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-English-speaking cultures, "a divided by b" is written a : b. However, in English usage the colon is restricted to expressing the related concept of ratios (then "a is to b").

With a knowledge of multiplication tables, two integers can be divided on paper using the method of long division. If the dividend has a fractional 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.

In modern computers, long division has been replaced by faster methods; see Division (digital).

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 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.

  1. Say that 26 cannot be divided by 10; division becomes a partial function.
  2. Give the answer as a decimal fraction or a mixed number, so \frac{26}{10} = 2.6 or 26/10 = 2 \frac 35. This is the approach usually taken in mathematics.
  3. Give the answer as an integer quotient and a remainder, so \frac{26}{10} = 2 remainder 6.
  4. Give the integer quotient as the answer, so \frac{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 languages, 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.

Names and symbols used for integer division include div, /, \, and %. Definitions vary regarding integer division when the quotient is negative: rounding may be toward zero or toward minus infinity.

Divisibility rules can sometimes be used to quickly determine whether one integer divides exactly into another.

The result of dividing two rational numbers 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 \over q} \times {s \over r} = {ps \over qr}.

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

Division of two real numbers 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.

Dividing two complex numbers 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 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.

One can define the division operation for polynomials. Then, as in the case of integers, one has a remainder. See polynomial long division.

One can define a division operation for matrices. The usual way to do this is to define A / B = AB−1, where B−1 denotes the inverse of B, but it is far more common to write out AB−1 (or B−1A) explicitly to avoid confusion.

Because matrix multiplication is not commutative, one can also define a left division or so-called backslash-division as A \ B = A−1B. For this to be well defined, B−1 need not exist, however A−1 does need to exist. To avoid confusion, division as defined by A / B = AB−1 is sometimes called right division or slash-division in this context.

Note that with left and right division defined this way, A/(BC) is in general not the same as (A/B)/C and nor is (AB)\C the same as A\(B\C), but A/(BC) = (A/C)/B and (AB)\C = B\(A\C).

To avoid problems when A−1 and/or B−1 do not exist, division can also be defined as multiplication with the pseudoinverse, i.e., A / B = AB+ and A \ B = A+B, where A+ and B+ denote the pseudoinverse of A and B.

In abstract algebras 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 − 1b = 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. If such a ring is finite, then by an application of the pigeonhole principle, every nonzero element of the 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 algebras. 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 numbers C, the quaternions H, or the octonions O.

The derivative of the quotient of two functions is given by the quotient rule:

{\left(\frac fg\right)}' = \frac{f'g - fg'}{g^2}.

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

Advanced Search
Included Web Search Engines


Safe Search

close

Top Matching Results

Occasionally Search.com will highlight specialized results that are based on the context of your query. Examples of specialized results include specific links to news, images, or video.

Top Matching Results may highlight information from other Search.com pages, content from the CNET Network of sites, or third party content. The listings are based purely on relevance. Search.com does not receive payment for listings in this section but our partners that provide this data may get paid for listing these products.

Sponsored Links

This section contains paid listings which have been purchased by companies that want to have their sites appear for specific search terms and related content. These listings are administered, sorted and maintained by a third party and are not endorsed by Search.com.

Search Results

Search.com sends your search query to several search engines at one time and integrates the results into one list which has been sorted by relevance using Search.com's proprietary algorithm. You can customize the list of search engines included in your metasearch from the preferences.

The search engines that are used in your metasearch may allow companies to pay to have their Web sites included within the results. To view the Paid Inclusion policy for a specific search engine, please visit their Web site. Search.com does not accept payment or share revenue with any search engine partner for listings in this section.