Quoted By:
PEDMAS could be entirely solved by removing all implicit multiplication.
> 6 / 3(x+7)
should always be
> 6 / 3 *(x+7)
It's how you have to type it into a programming language. They always stress parenthesis first and then expect brainlets to understand 3(3) is not considered part of the parenthesis part of PEDMAS.
You'd think if you were going to design some kind of language, especially one for mathematics, it would be as explicit as possible with no potential room for misunderstanding.