eolas/zk/Distributivity.md

35 lines
698 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:
- theorems
- prealgebra
2022-04-23 13:26:53 +01:00
---
# The Distributive Property of Multiplication
**Let $a$, $b$ represent members of $\mathbb{W}$ or $\mathbb{Z}$ then:**
$$ a \cdot (b + c) = a \cdot b + a \cdot c $$
### Demonstration
When faced with $4(2\cdot3)$ we may proceed with the official order of
operations in algebra, namely:
2022-04-23 13:26:53 +01:00
2022-09-06 13:26:44 +01:00
```
2022-04-23 13:26:53 +01:00
4 x (2 + 3) = 4 x (5)
= 20
2022-09-06 13:26:44 +01:00
```
2022-04-23 13:26:53 +01:00
In other words we find the sum of the values in parentheses and then multiply
this by the value outside of the brackets.
2022-04-23 13:26:53 +01:00
When we use distributive property we _distribute_ each value in the parentheses
against the value outside of the parentheses:
2022-04-23 13:26:53 +01:00
2022-09-06 13:26:44 +01:00
```
2022-04-23 13:26:53 +01:00
4 x (2 + 3) = (4 x 2) + (4 x 3)
8 + 12 = 20
2022-09-06 13:26:44 +01:00
```