Open main menu

Changes

The equation that broke the Internet

186 bytes added, 21:06, 25 August 2020
The [https://www.desmos.com/scientific Desmos Scientific Calculator] handles our given equation correctly. The error checking appears to be built into the division key.
Entering the equation into a programming language, or low quality calculator requires the explicit multiplication symbol and outer parenthesis.
'''6÷2(1+2) == 6÷(2*(1+2))'''
 
<!--
I realized that shorthand parenthetical notation could become a problem when I was taking a 'C' programming course in college. Unfortunately, we are still using code that was written for computers that had severe memory limitations.
</div>
'''Therefore,''' if the calculator module has already processed the division 6÷2 by the time it reaches the parenthesis, the coefficient and the accompanying implicit multiplication has been eliminated. The division must be sustained to apply to the remainder of the function, in left to right processing, it cannot be presumed that an implicit/implied operator always infers multiplication in computer mathematics modules. In this case, the processing must branch.
-->