Improved wording in all-factors-of-a-number (#19096)

* Update to all-factors-of-a-number

Improved wording for better understanding

* Update index.md
This commit is contained in:
asset-afv
2018-10-16 09:30:00 +06:00
committed by Quincy Larson
parent 290e16e80d
commit 2a11e0dfd7

View File

@ -3,19 +3,21 @@ title: All Factors of a Number
---
## All Factors of a Number
You can think of factors as the numbers that you multiply to get another number.
You can think of factors as the whole numbers that you multiply to get another whole number. Factorizing is only applicable for the whole numbers.
<img src="https://upload.wikimedia.org/wikipedia/commons/e/e8/Factor_Tree_of_42.png" width="90">
In this case 2, 3, 6, and 7 are all numbers you can multiply to get 42. So, they are all factors of 42. However, they are not all the factors of 42. To find all the factors we can use the algorithm or step by step by process below.
In this case 2, 3, 6, and 7 are all numbers you can multiply to get 42. So, they are all factors of 42. However, it is not the full list of factors of 42. To find all the factors we can use the algorithm or step by step by process below.
Start with 1.
Start with 1, as it it the factor for any number.
1 * 42 = 42
1 | ... | 42
--- | --- | ---
Then, follow with successively increasing numbers.
Try 2.
2 * 21 = 42
@ -46,7 +48,7 @@ Try 6.
1 | 2 | 3 | 6 | ... | 7 | 14 | 21 | 42
--- | --- | --- | --- | --- | --- | --- | --- | ---
Since there are no whole numbers between 6 and 7, all of the positive factors have been found. All of the numbers above can have their sign flipped and will continue to be factors of 42. In conclusion, all the factors of 42 are below.
Since there are no whole numbers between 6 and 7, all of the positive factors have been found. All of the numbers above are to have their sign flipped and are also the factors of 42. In conclusion, all the factors of 42 are below.
1 | 2 | 3 | 6 | 7 | 14 | 21 | 42 | -1 | -2 | -3 | -6 | -7 | -14 | -21 | -42
--- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | ---