eolas/Mathematics/Prealgebra/Dividing_fractions.md

75 lines
2.2 KiB
Markdown
Raw Normal View History

2022-04-23 13:26:53 +01:00
---
2022-09-06 13:26:44 +01:00
categories:
2022-04-23 13:26:53 +01:00
- Mathematics
2022-09-06 13:26:44 +01:00
tags:
- prealgebra
2022-04-23 13:26:53 +01:00
- fractions
- division
---
2022-04-25 07:42:49 +01:00
# Dividing fractions
2022-04-23 13:26:53 +01:00
Suppose you have the following shape:
![draw.io-Page-9.drawio 1.png](../../_img/draw.io-Page-9.drawio.png)
2022-04-23 13:26:53 +01:00
One part is shaded. This represents one-eighth of the original shape.
![one-eighth-a.png](../../_img/one-eighth-a.png)
2022-04-23 13:26:53 +01:00
2022-04-25 07:42:49 +01:00
Now imagine there are four instances of the shape and one-eighth remains shaded. How man one-eighths are there in four?
2022-04-23 13:26:53 +01:00
![draw.io-Page-9.drawio 2.png](../../_img/draw.io-Page-9.drawio.png)
2022-04-23 13:26:53 +01:00
The shaded proportion represents $\frac{1}{8}$ of the shape. Imagine four of these shapes, how many eighths are there?
This is a division statement: to find how many one-eighths there are we would calculate:
2022-04-25 07:42:49 +01:00
2022-04-23 13:26:53 +01:00
$$
2022-04-25 07:42:49 +01:00
4 \div \frac{1}{8}
2022-04-23 13:26:53 +01:00
$$
But actually it makes more sense to think of this as a multiplication. There are four shapes of eight parts meaning there are $4 \cdot 8$ parts in total, 32. One of these parts is shaded making it equal to $\frac{1}{32}$.
From this we realise that when we divide fractions by an amount, we can express the calculation in terms of multiplication and arrive at the correct answer:
$$
4 \div \frac{1}{8} = 4 \cdot 8 = 32
$$
2022-04-25 07:42:49 +01:00
Note that we omit the numerator but that technically the answer would be $\frac{1}{32}$.
2022-04-23 13:26:53 +01:00
### Formal specification of how to divide fractions
We combine the foregoing (that it is easier to divide by fractional amounts using multiplication) with the concept of a [reciprocol](Reciprocals.md) to arrive at a definitive method for dividing two fractions.
2022-04-25 07:42:49 +01:00
It boils down to: _invert and multiply_:
2022-04-23 13:26:53 +01:00
2022-09-06 13:26:44 +01:00
If $\frac{a}{b}$ and $\frac{c}{d}$ are fractions then:
2022-05-03 07:00:04 +01:00
$$\frac{a}{b} \div \frac{c}{d} = \frac{a}{b} \cdot \frac{d}{c}$$
2022-04-23 13:26:53 +01:00
2022-04-25 07:42:49 +01:00
We invert the divisor (the second factor) and change the operator from division to multiplication.
2022-04-23 13:26:53 +01:00
#### Demonstration
2022-04-25 07:42:49 +01:00
Divide $\frac{1}{2}$ by $\frac{3}{5}$
2022-04-23 13:26:53 +01:00
$$
2022-04-25 07:42:49 +01:00
\begin{split}
\frac{1}{2} \div \frac{3}{5} = \frac{1}{2} \cdot \frac{5}{3} \\
2022-04-23 13:26:53 +01:00
= \frac{5}{5}
2022-04-25 07:42:49 +01:00
\end{split}
2022-04-23 13:26:53 +01:00
$$
2022-04-25 07:42:49 +01:00
Divide $\frac{-6}{x}$ by $\frac{-12}{x^2}$
2022-04-23 13:26:53 +01:00
$$
2022-04-25 07:42:49 +01:00
\begin{split}
\frac{-6}{x} \div \frac{12}{x^2} = \frac{-6}{x} \cdot \frac{x^2}{-12} \\ =
\frac{(\cancel{3} \cdot \cancel{2} )}{\cancel{x}} \cdot \frac{(\cancel{x} \cdot \cancel{x} )}{\cancel{3} \cdot \cancel{2} \cdot 2} \\ =
\frac{x}{2}
\end{split}
2022-04-23 13:26:53 +01:00
$$