#Hard algebra problem
8 messages · Page 1 of 1 (latest)
Is that all that's given?
Please show the original problem, exactly as it was stated to you, with the entire original context. A picture or screenshot is best. If the original problem is not in English, then post it anyway! The additional context might still be helpful. Do your best to provide a translation.
Left-to-right is standard for everything except exponents: a ^ b ^ c is evaluated from right-to-left—a ^ (b ^ c)
This is common in computer programing. For instance, doing symbolic division I often write things as expr / x / 2 rather than expr / (x * 2) or (expr / x) / 2—you can imagine for the last one that expr is quite long and it could be hard to see where the parentheses start and stop. Like I might write factor((4x^2 - 8 * x + 4) / (x - 1) / 4) rather than factor(((4x^2 - 8 * x + 4) / (x - 1)) / 4). In my opinion the first is slightly easier for a human to read.
Yes
Maybe the g wasn’t there
I can’t remember