eolas/zk/Prime_factorization.md

30 lines
922 B
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
2023-02-10 18:22:04 +00:00
- number-theory
2022-04-23 13:26:53 +01:00
---
### Prime factorisation
Prime factorisation is the activity of expressing a composite number as the
unique product of [prime numbers](Primes%20and%20composites.md). There are two
main approaches to this:
2022-04-23 13:26:53 +01:00
2022-09-06 13:26:44 +01:00
- - factor\* trees
- repeated division by two
2022-04-23 13:26:53 +01:00
> **Factor trees:** we take a number $n$ and break it down into two factors of
> $n$. We then repeat this process with the resulting factors working
> recursively until the numbers we are left with are primes.
2022-04-23 13:26:53 +01:00
2024-02-17 11:57:44 +00:00
![Untitled Diagram-Page-1.drawio.png](Untitled%20Diagram-Page-1.drawio.png)
2022-09-06 13:26:44 +01:00
_The prime factors of 27 are 2, 3, 3_
2022-04-23 13:26:53 +01:00
it doesn't matter which products we choose as the interim factors, we should
always reach the same outcome:
2024-02-17 11:57:44 +00:00
![Untitled Diagram-Page-3.drawio 1.png](Untitled%20Diagram-Page-3.drawio%201.png)
2022-04-23 13:26:53 +01:00
2024-02-17 11:57:44 +00:00
![Untitled Diagram-Page-2.drawio.png](Untitled%20Diagram-Page-2.drawio.png)