>>11
The point behind prefix notation is that it keep the rules simple and consistent, which helps when extending the language with macros and such. * / + - are treated just like normal functions.
In lisp, the first element between two parens is *always* a function and the remaining ones are *always* arguments to that function. If you allowed infix, then you'd suddenly have this really complicated exception rule that would make the language less malleable.