eolas/neuron/4e66db01-35b6-4b9c-aab8-2a0429e30df2/Prime_factorization.md

28 lines
913 B
Markdown
Raw Normal View History

2024-10-19 11:00:03 +01:00
---
tags:
- prealgebra
- number-theory
---
# 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:
- - factor\* trees
- repeated division by two
> **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.
2024-10-20 19:50:20 +01:00
![Untitled Diagram-Page-1.drawio.png](static/Untitled%20Diagram-Page-1.drawio.png) _The
2024-10-19 11:00:03 +01:00
prime factors of 27 are 2, 3, 3_
it doesn't matter which products we choose as the interim factors, we should
always reach the same outcome:
2024-10-20 19:50:20 +01:00
![Untitled Diagram-Page-3.drawio 1.png](static/Untitled%20Diagram-Page-3.drawio%201.png)
2024-10-19 11:00:03 +01:00
2024-10-20 19:50:20 +01:00
![Untitled Diagram-Page-2.drawio.png](static/Untitled%20Diagram-Page-2.drawio.png)