When writing that Insights article, I came upon a curiosity.
Rather than (add,subtract,multiply,divide) as the basic arithmetic operations, students could be taught (sum,negate,multiply,invert). Where sum adds signed numbers, while add implies unsigned positives such as "3 goats plus 2 goats". Subtraction could be defined as negate, then sum. Division is invert, then multiply.
But then someone could note that negation is just multiplication by -1, so that the operators could be reduced to three (sum, multiply, invert.)
If we introduce complex numbers, then we could have (sum, negate, multiply, invert, rotate). But negate and rotate are both special cases of multiply, so we are back to three once again (sum, multiply, invert).
But with complex, there is an additional basic operation so we are back to four (sum, multiply, invert, conjugate)
I'm curious. Has anyone else been down this path before of redefining the basic arithmetic operators?