Fraction (mathematics): Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Olier Raby
(== See also ==)
imported>Olier Raby
(→‎Division: Correction.)
Line 105: Line 105:
# <math> \frac{a}{b} \div \frac{c}{d} = \frac{a}{b} \times \frac{d}{c} </math>
# <math> \frac{a}{b} \div \frac{c}{d} = \frac{a}{b} \times \frac{d}{c} </math>
# <math> \frac{a}{b} \div \frac{c}{d} = \frac{a \times d}{b \times c} </math>
# <math> \frac{a}{b} \div \frac{c}{d} = \frac{a \times d}{b \times c} </math>
# <math> e = GCD(ad, bc) \,</math>
# <math> e = gcd(ad, bc) \,</math>
# <math> \frac{a}{b} \div \frac{c}{d} = \frac{ad \div e }{ bc \div e}</math>
# <math> \frac{a}{b} \div \frac{c}{d} = \frac{ad \div e }{ bc \div e}</math>



Revision as of 06:46, 6 March 2008

In mathematics, a fraction is a concept used to convey a proportional relation between a part and the whole. It consists of a numerator (an integer - the part) and a denominator (a natural number - the whole). For instance, the fraction can represent three equal parts of a whole object, if the object is divided into five equal parts. A fraction with equal numerator and denominator is equal to one (e.g., ). We can represent all rational numbers with fractions.

Fractions are a special case of ratios. For instance, is a valid ratio, but it is not a fraction since we cannot compute an equivalent fraction with integer numerator and integer denominator.

Since we can compute the quotient from a fraction, we can represent any fraction with a decimal number (e.g., ). However, because the division by zero is undefined, zero should never be the denominator of a fraction.

Due to tradition and conventions, there are at least two ways to write a fraction. The numerator and the denominator may be separated by a slash (a slanted line : 3/4), or by a vinculum (an horizontal line : ).

Basic operations

The most common operations done on fractions are addition, substraction, multiplication, and division. In order to perform the addition and the substraction, we must frequently compute the equivalent fractions. We may need the multiplicative inverse when dividing.

The end result must be an irreducible fraction.

In this section, and , .

Equivalent fractions

A fraction where the numerator and the denominator do not have any common factor, 1 excepted, is said irreducible (or in its lowest terms). If it is not the case, then we divide its numerator and its denominator by their gcd.

Multiplying (or integer dividing) the numerator and the denominator of a fraction by the same non-zero integer results in a new fraction that is said to be equivalent to the original fraction. For instance, is not in lowest terms because both 4 and 20 can be exactly divided by 4, giving (the quotient of both fractions is 0.2). In contrast, is in lowest terms.

Inverses

The additive inverse of a fraction is :

The multiplicative inverse of a fraction is :

.

Addition

Formally, apply this algorithm to add two fractions :

By hands, the addition is done like this.

  1. Compute an equivalent fraction of and , making sure both have the same denominator.
  2. For the resulting fraction,
    1. Add the numerators to get its numerator.
    2. Set its denominator to the computed denominator (the three fractions have the same denominator).
  3. Reduce the resulting fraction if you need to.

For instance, what is the result of  ?

Let's find a number that both denominators will divide : It is 12. We are ready to compute the equivalent fractions :

This is the final answer since it is an irreducible fraction.

Substraction

Formally, apply this algorithm to substract two fractions :

By hands, the substraction is done like this.

  1. Compute an equivalent fraction of and , making sure both have the same denominator.
  2. For the resulting fraction,
    1. Substract the numerators to get its numerator.
    2. Set its denominator to the computed denominator (the three fractions have the same denominator).
  3. Reduce the resulting fraction if you need to.

Since this algorithm is very similar to the addition algorithm, we do not give any example.

Multiplication

Formally, apply this algorithm to multiply two fractions :

By hands, the multiplication is done like this.

  1. For the resulting fraction,
    1. Set its numerator to the product of both numerators.
    2. Set its numerator to the product of both denominators.
  2. Reduce the resulting fraction if you need to.

For instance, what is the result of  ?

Since the result is not an irreducible fraction, we must reduce it. We divide the numerator and the denominator by 3 :

.

Division

Dividing by a fraction is the same as multiplying by its inverse.

Formally, apply this algorithm to divide two fractions :

By hands, the division is done like this.

  1. Compute the multiplicative inverse of the second fraction (exchange the numerator and the denominator).
  2. For the resulting fraction,
    1. Set its numerator to the product of both numerators.
    2. Set its numerator to the product of both denominators.
  3. Reduce the resulting fraction if you need to.

For instance, what is the result of  ?

The result is an irreducible fraction.

See also