Mathwords logoMathwords

Operator — Definition, Formula & Examples

An operator is a symbol that tells you what mathematical action to perform on one or more numbers. The most common operators are addition (+), subtraction (−), multiplication (×), and division (÷).

An operator is a symbol or function that maps one or more input values (operands) to an output value according to a defined rule. In arithmetic and algebra, binary operators such as ++, -, ×\times, and ÷\div act on two operands, while unary operators such as negation (x-x) act on a single operand.

How It Works

An operator always needs at least one number (called an operand) to work on. In the expression 8+38 + 3, the operator is ++ and the operands are 88 and 33. The operator defines the rule: here, addition tells you to combine the two values to get 1111. When multiple operators appear in one expression, order of operations (PEMDAS) determines which one you carry out first.

Worked Example

Problem: Identify each operator in the expression 5×(124)+65 \times (12 - 4) + 6 and evaluate it.
Identify operators: The expression contains three operators: × (multiplication), − (subtraction), and + (addition).
Parentheses first: The subtraction operator inside the parentheses acts first.
124=812 - 4 = 8
Multiplication next: The multiplication operator has higher precedence than addition.
5×8=405 \times 8 = 40
Addition last: Finally, apply the addition operator.
40+6=4640 + 6 = 46
Answer: The value of the expression is 4646. The three operators (×\times, -, ++) were applied in the order dictated by PEMDAS.

Why It Matters

Understanding operators is essential for reading and writing any mathematical expression, from basic arithmetic through algebra and beyond. In computer science and programming, operators like ++, ==, and logical AND/OR follow the same core idea: a symbol that defines an action on values.

Common Mistakes

Mistake: Confusing an operator with an operand.
Correction: The operator is the symbol that tells you what to do (++, -, etc.). The operands are the numbers it acts on. In 7+27 + 2, the operator is ++ and the operands are 77 and 22.