- #36
AlfieD
- 68
- 0
1MileCrash said:Furthermore, in general, if you have an equation with some "x", when you put a value in it, you should always put parenthesis around it, because otherwise you can lose any meaning of x if x itself contains operations.
For example, if I have ##2x + x^{2}## and I want to replace x with "y + z," the way to do that is to write ##2(y + z) + (y + z)^{2}##. If I don't put those parenthesis for the first term, I am not doubling x, or y + z, I am doubling y and then adding z afterwards, and a similar problem arises for the second term.
Yeah, awesome, I understand that.