Fraction (mathematics): Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Olier Raby
(→‎Forms: Added text.)
imported>Olier Raby
(=== Mixed number to improper fraction ===)
Line 121: Line 121:


The result is an irreducible fraction.
The result is an irreducible fraction.
=== Mixed number to improper fraction ===
A mixed number can be converted to an improper fraction with this algorithm :
#Multiply the integer by the denominator of the fractional part.
#Add the numerator of the fractional part to that product.
#Add both fractions.
Here is an example.
:<math> 2 \frac{3}{4} = 2 + \frac{3}{4}</math>
:<math> = \frac{2}{1} + \frac{3}{4}</math>
:<math> = \frac{2 \times 4}{1 \times 4} + \frac{3}{4}</math>
:<math> = \frac{8}{4} + \frac{3}{4}</math>
:<math> = \frac{11}{4}</math>


== See also ==
== See also ==

Revision as of 08:06, 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 : ).

Forms

A vulgar fraction (or common fraction) simply refers to a numerator divided by a denominator (e.g., and ). It is said to be a proper fraction if the absolute value of the numerator is less than the absolute value of the denominator (e.g. ). An improper fraction (top-heavy fraction in Great Britain) is said if the absolute value of the numerator is greater than or equal to the absolute value of the denominator (e.g. ). All natural number greater than 1 can be reprented by an an improper fraction, since .

A mixed number is the sum of an integer and a proper fraction (e.g., ). An improper fraction is equivalent to a mixed number. To convert from one form to another, see Mixed number to improper fraction and Improper fraction to mixed number

Arithmetic 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. Set its numerator to the addition of the numerators.
    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. Set its numerator to the substraction of the numerators.
    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.

Mixed number to improper fraction

A mixed number can be converted to an improper fraction with this algorithm :

  1. Multiply the integer by the denominator of the fractional part.
  2. Add the numerator of the fractional part to that product.
  3. Add both fractions.

Here is an example.

See also