diff --git a/docs/basic-syntax-and-arithmetic.md b/docs/basic-syntax-and-arithmetic.md
index 2da58c5..8475d32 100644
--- a/docs/basic-syntax-and-arithmetic.md
+++ b/docs/basic-syntax-and-arithmetic.md
@@ -536,7 +536,7 @@ A `VALUE ERROR` means that there is nothing associated with the name provided. W
???Example "Answers"
- - Multiplication is commutative, so we can write `b×÷a`
+ - Multiplication is commutative, which means that the order of arguments does not matter, so we can write `b×÷a`. Even more simply, it is `b÷a` because multiplication by a reciprocal is the same as division.
- ${{{1}\over{a}}\div{b}} = {{1}\over{a\times{b}}}$ so we can write `÷a×b`
- Use a literal negative five:`¯5+a+b`
- No parentheses needed: `a+b+5`