
David W. answered 03/02/18
Tutor
4.7
(90)
Experienced Prof
The advanced term for this (in computer programming) is "operator overloading." That is, the "*" operator has a new meaning.
It is quite easy to understand this problem if it is stated with an "unused" operator, like "♥":
"If a ♥ b means 2a + b , then what is 2 ♥ 5 ?"
2(2) + 5 [a=2 and b=5]
9