An operation is a rule, or set of rules, for processing one or more objects.
A binary operation is one which combines two objects to make a third. Addition, subtraction, multiplication and division are all examples.
An operator is the symbol used to show which operation is to be done.
Augend: the number to which another is added.
Addend: the number being added.
Summand: a quantity to be added to another.
Sum: the result of addition.
augend + addend = sum
Minuend: the amount from which something is subtracted.
Subtrahend: the number taken away.
Difference: the result of subtraction.
minuend − subtrahend = difference
Multiplicand: the amount to be multiplied.
Multiplier: the amount by which to multiply.
Product: the result of multiplication.
multiplicand × multiplier = product
Dividend: the amount to be divided.
Divisor: the amount by which to divide.
Quotient: the whole number result.
Remainder: what is left over.
dividend ÷ divisor = quotient + (remainder ÷ divisor)
The division algorithmA commutative operation is one in which the order does not matter.
Addition is commutative
3 + 2 = 2 + 3
3 − 2 ≠ 2 − 3
Multiplication is commutative
3 × 2 = 2 × 3
3 ÷ 2 ≠ 2 ÷ 3
A binary operation is associative if grouping makes no difference.
Addition is associative
3 + 2 + 5 = 3 + (2 + 5)
5 − 3 − 2 ≠ 5 − (3 − 2)
Multiplication is associative
3 × 2 × 5 = 2 × (3 × 5)
12 ÷ 3 ÷ 2 ≠ 12 ÷ (3 ÷ 2)
The distributive property of multiplication over addition or subtraction:
In general:
Usually the multiplication sign is omitted:
The identity for a binary operation is an object which, when combined with any other object, leaves it unchanged.
For addition: a + 0 = a
For multiplication: a × 1 = a
Number bases are systems for writing numbers using different sets of digits and place values. In any base, each position in a numeral represents a power of the base, starting with the units place and increasing to the left.
Base ten uses powers of 10 , base two uses powers of 2, and base sixteen uses powers of 16. Although the symbols used may change from one base to another, the underlying quantity remains the same. Converting between bases involves expressing a number in terms of the powers of the new base and rewriting it using the appropriate digits.
1510 = 11112 = 305
(Read as: 15 in base ten is equal to 1111 in base 2 or 30 in base 5.)
The subscript shows the base.
They can also be written 15dec = 1111bin.
1510 
\[ 15_{\text{dec}} = 1111_{\text{bin}} \]

\[ 15_{\text{dec}} = 30_{5} \]
In hexadecimal, the letters A to F represent the numbers 10 to 15.
A = 10, B = 11, C = 12, D = 13, E = 14, F = 15
So 1220dec = 4C4hex