The rules that govern equations and patterns
We let a = weight of one apple (variable). The constant 100g was fixed. The equation 3a = 2a + 100 uses both variables and constants.
| Expression | Equation |
|---|---|
| 2x + 3 | 2x + 3 = 7 |
| No equals sign | Has equals sign (=) |
| Can be simplified | Can be solved |
| Example: 3a + 2b | Example: 3a + 2b = 11 |
Expressions: 3p + 2n (cost of 3 pens and 2 notebooks)
Equation: 3p + 2n = 11 (total cost equals $11)
3a = 2a + 100
Subtract 2a: a = 100
3p + 2n = 11 ...(1)
1p + 3n = 13 ...(2)
Method 1 - Substitution:
From (2): p = 13 - 3n
Substitute into (1): 3(13 - 3n) + 2n = 11
39 - 9n + 2n = 11
39 - 7n = 11
-7n = -28
n = 4, then p = 13 - 12 = 1
Method 2 - Elimination:
Multiply (2) by 3: 3p + 9n = 39
Subtract (1): (3p + 9n) - (3p + 2n) = 39 - 11
7n = 28, n = 4, then p = 1
w(w + 5) = 84
w² + 5w - 84 = 0
Here a = 1, b = 5, c = -84
Using quadratic formula:
w = [-5 ± √(25 - 4×1×-84)] / 2
w = [-5 ± √(25 + 336)] / 2
w = [-5 ± √361] / 2
w = [-5 ± 19] / 2
w = 7 or w = -12
Since width can't be negative, w = 7m
Divide both sides by -2 (remember to flip sign!):
x > -3
| Type | Form | Example |
|---|---|---|
| Monomial | axⁿ | 3x² |
| Binomial | axⁿ + bxᵐ | 2x + 5 |
| Trinomial | axⁿ + bxᵐ + cxᵏ | x² + 5x + 6 |
x² + 5x + 6 = (x + 2)(x + 3)
Check: (x + 2)(x + 3) = x² + 3x + 2x + 6 = x² + 5x + 6 ✓
| Concept | Rule/Formula | Example |
|---|---|---|
| Commutative | a + b = b + a | 3 + 5 = 5 + 3 |
| Associative | (a + b) + c = a + (b + c) | (2 + 3) + 4 = 2 + (3 + 4) |
| Distributive | a(b + c) = ab + ac | 3(x + 2) = 3x + 6 |
| Zero Product | If ab = 0, then a = 0 or b = 0 | (x - 2)(x + 3) = 0 → x = 2 or x = -3 |
| Exponent Rules | xᵃ · xᵇ = xᵃ⁺ᵇ | x² · x³ = x⁵ |