2022-04-23 13:26:53 +01:00
|
|
|
---
|
2022-08-20 13:00:04 +01:00
|
|
|
tags: [algebra]
|
2022-04-23 13:26:53 +01:00
|
|
|
---
|
2024-02-02 15:58:13 +00:00
|
|
|
|
2022-04-23 13:26:53 +01:00
|
|
|
## Use inversion of operators
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
When solving equations we frequently make use of the
|
2024-02-17 11:57:44 +00:00
|
|
|
[ operator inversion rules](Inversion%20of%20operators.md) to find
|
2024-02-02 15:58:13 +00:00
|
|
|
the solutions.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Example: inversion of addition
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
For example, the equation $9 = 3 + x$ has the solution $6$ ($x$ is equal to
|
|
|
|
$6$). To arrive at this, we can use the inverse of the main operator in the
|
|
|
|
equation (addition): $9-3 = 6$.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Example: inversion of subtraction
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
Now consider $19 = x - 3$. The solution to this equation is $22$ ($x$ is equal
|
|
|
|
to $22$). To arrive at this, we can use the inverse of the main operator in the
|
|
|
|
equation (subtraction): $19 + 3 = 22$.
|
2022-04-23 13:26:53 +01:00
|
|
|
|
|
|
|
### Example: inversion of division
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
The equation we want to solve: $$\frac{x}{6} = 4$$
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
Now we invert it by multiplying the denominator by the quotient:
|
|
|
|
$6\cdot 4 = 24$. Therefore: $$ \frac{24}{6} = 4$$
|
2022-04-23 13:26:53 +01:00
|
|
|
The solution is $24$
|
|
|
|
|
|
|
|
### Example: inversion of multiplication
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
The equation we want to solve: $$4x = 36$$ Now we invert it by dividing the
|
|
|
|
product by the coefficient: !Add link to 'coefficient'
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
$$\frac{36}{4} = 9$$
|
2022-04-23 13:26:53 +01:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
Therefore the solution is $9$: $$ 4(9) = 36$$
|