eolas/zk/Factors_and_divisors.md

94 lines
2.9 KiB
Markdown
Raw Permalink Normal View History

2022-04-23 13:26:53 +01:00
---
2022-09-06 13:26:44 +01:00
tags:
- prealgebra
2022-04-23 13:26:53 +01:00
---
2024-10-18 20:00:02 +01:00
# Factors and divisors
2022-04-23 13:26:53 +01:00
The terms **factor** and **divisor** are used interchangeably. They are
different ways of expressing the same mathematical truth and this is because of
the inverse relationship between division and multiplication.
2022-04-23 13:26:53 +01:00
### Divisors
> For a number $n$, its divisor is any number that divides $n$ evenly without
> remainder: $$ \frac{a}{b} = 0 $$
2022-04-23 13:26:53 +01:00
In this operation, $a$ is the **divisor**, $b$ is the **dividend** and $0$ is
the **quotient**.
2022-04-23 13:26:53 +01:00
### Factors
> For a given number $n$, its factors are any pair of numbers that when
> multiplied together return $n$ as the product: $$ a \cdot b = n $$
2022-04-23 13:26:53 +01:00
We can see the relationship consists in the fact that factors are associated
with multiplication and divisors are associated with division: two different
perspectives on the same number relationships.
2022-04-23 13:26:53 +01:00
For example, 6 is both a factor and divisor of 18 and 24. To be precise, it is
the greatest common divisor of these two numbers.
2022-04-23 13:26:53 +01:00
2022-09-06 13:26:44 +01:00
As a divisor:
2022-04-23 13:26:53 +01:00
$$
\\frac{18/6}{24/6} = \frac{3}{4}
$$
As a factor:
2022-09-06 13:26:44 +01:00
2022-04-23 13:26:53 +01:00
$$
\\frac{3 \cdot 6}{4 \cdot 6} = \frac{18}{24}
$$
When we divide by the common divisor is acts as a divisor. When we multiply by
the common divisor it acts as a factor. The fact that the fractions are
[equivalent](Equivalent%20fractions.md) in both cases indicates that the
properties are equivalent.
2022-04-23 13:26:53 +01:00
## Greatest common divisor
> For two two integers $a, b$, $D$ is a common divisor of $a$ and $b$ if it is a
> divisor of both. The greatest common divisor is the largest value that $D$ can
> be whilst remaining a divisor to both $a$ and $b$.
2022-04-23 13:26:53 +01:00
### Demonstration
2022-09-06 13:26:44 +01:00
_Find the greatest common divisor of $18$ and $24$_
2022-04-23 13:26:53 +01:00
The divisors of 18: $$1, 2, 3, 6, 9, 18$$
2022-04-23 13:26:53 +01:00
The divisors of 24: $$ 1, 2, 3, 4, 6, 8, 12, 24$$
2022-04-23 13:26:53 +01:00
Thus the common divisors are: $$ 1, 2, 3, 6 $$
2022-04-23 13:26:53 +01:00
2022-09-06 13:26:44 +01:00
The largest value in the above set is 6, thus 6 is the greatest common divisor.
2022-04-23 13:26:53 +01:00
## Heuristics for finding divisors
1. For dividend $n$ , if $n$ ends in an even number or zero, $n$ is **divisible
by 2**.
2022-04-23 13:26:53 +01:00
1. $\frac{12}{2} = 6$
1. $\frac{84}{2} = 42$
1. For dividend $n$ if the sum of the digits is divisible by 3 then $n$ is
**divisible by 3**.
2022-04-23 13:26:53 +01:00
1. $\frac{72}{3} = 24$
1. $\frac{21}{3} = 7$
1. For a dividend $n$ if the number represented of the last two digits of $n$
divides by 4 then $n$ is divisible by 4
2022-04-23 13:26:53 +01:00
1. $\frac{324}{4} = 81$
1. $\frac{532}{4} = 133$
1. For a dividend $n$, if the last digit of $n$ is divisible by 0 or 5, then $n$
is divisible by 5.
2022-04-23 13:26:53 +01:00
1. $\frac{25}{5} = 5$
1. For a dividend $n$, if $n$ is divisible by 2 and 3, then $n$ is divisible
by 6.
2022-04-23 13:26:53 +01:00
1. $\frac{12}{6} = 2$
1. $\frac{18}{6} = 3$
1. For a dividend $n$, if the last three digits of $n$ are divisible by 8, then
$n$ is divisible by 8.
2022-04-23 13:26:53 +01:00
1. $\frac{73024}{8} = 9128$
1. For a dividend $n$, if the sum of the digits of $n$ is divisible by 9 then
$n$ is divisible by 9.
2022-04-23 13:26:53 +01:00
1. $\frac{117}{9} = 13$