Does anyone know how historically we came to notate functions as f(x)
instead of (x)f
?
For example g(f(x))
instead of ((x)f)g
or for matrices B A x
instead of x A B
.
After all (in the Western world) we write from left to right, but in mathematics we notate operations from right to left. Also if anyone of Arabian origin sees that, does it mean you don't have that particular confusion?
g(f(x))
, f is evaluated before g. So the operation which comes first in writing is last in execution. – Danvil Nov 13 '17 at 00:32