The Art of Mathematics

Help 3.1.3

( ) — parentheses

1. Function

Use parentheses to enclose function arguments and control the execution order inside expression.

2. How to use

To enclose function arguments:

sin(2);

To change default execution order inside expression. Consider:

1+2*3;

and

(1+2)*3;