I didn't get the point that when the PEMDAS and the BODMAS rule are different, then how can they both yeild the same results. I have searched over google but found everywhere that they're the same. Where as I see them as according to the precedency they have in the order the put in are different
PEMDAS Parentheses > Exponents > Multiplication > Division > Addition > Subtraction
BODMAS(Also known as PEDMAS/BIDMAS) Brackets/Braces > Order > Division > Multiplication > Addition > Subtraction
The main difference I see in both if them is the change of precedency of multiplication and division. Can anyone elaborate this?
Division is the inverse operation of multiplication, and subtraction is the inverse of addition. Because of that, multiplication and division are actually one step done together from left to right; the same goes for addition and subtraction. Therefore, PEMDAS and BODMAS are the same thing.
To see why the difference in the order of the letters in PEMDAS and BODMAS doesn't matter, consider the following expression:
$$ a_1 / b_1 \times a_2 / b_2 \times a_3 / b_3 $$
As long as you treat the multiplication and division steps with equal precedence and read them from left to right, you will end up with the following after simplification:
$$ \frac{a_1 a_2 a_3}{b_1 b_2 b_3} $$
With that, we can acknowledge that PEMDAS and BODMAS both have the same four steps.
$$ \text{parentheses} \rightarrow \text{exponents} \rightarrow \underbrace{\begin{matrix} \text{multiplication} \\ \text{division}\end{matrix}}_{\text{from left to right}} \rightarrow \underbrace{\begin{matrix} \text{addition} \\ \text{subtraction}\end{matrix}}_{\text{from left to right}} $$
P.S. Thanks to @coffeemath and @JMoravitz for their comments improving this answer.