Order of evaluation

The formula, or expression, has an order of evaluation. For example, in a + @sin(c x d) + z * y, you would perform the inside operations first (c x d) and then go from left to right using the value (c x d). Another way to view this is as a tree:

Formular for order of evaluation.