Multiplication
ArithmeticMultiplication is the arithmetic operation of repeated addition, combining equal groups to find a product.
Formula
a \times b = \text{product}
Definition
Multiplication is a fast way to add equal groups. Instead of adding the same number over and over, you multiply to get the answer quickly. The result is called the product.
Example
$4 \times 3 = 12$ means four groups of three: $3 + 3 + 3 + 3 = 12$. You could count all $12$, but multiplying is faster.
Key Insight
Multiplication is a shortcut for repeated addition. Knowing your multiplication tables lets you skip the slow counting.
Definition
Multiplication is a binary operation on numbers. For positive integers, $a \times b$ is the sum of $b$ copies of $a$. Properties: commutative ($a \times b = b \times a$), associative ($(a \times b) \times c = a \times (b \times c)$), distributive over addition ($a \times (b + c) = a \times b + a \times c$), and identity element $1$.
Example
$(-3) \times (-4) = 12$ (negative times negative is positive). $6 \times (10 + 2) = 6 \times 10 + 6 \times 2 = 60 + 12 = 72$ (distributive property).
Key Insight
The distributive property links multiplication and addition and is the foundation of all algebraic manipulation, from simplifying expressions to the FOIL method and beyond.
Definition
Multiplication is one of the two operations defining a ring. A ring $(R, +, *)$ requires that $*$ is associative, distributes over $+$, and has an identity ($1$). Commutativity of $*$ is an additional property (commutative ring). $\mathbb{Z}$, $\mathbb{Q}$, $\mathbb{R}$, $\mathbb{C}$ are all commutative rings. Matrix multiplication is non-commutative, forming a non-commutative ring.
Example
Fast multiplication algorithms: grade-school is $O(n^2)$. Karatsuba (1960) is $O(n^{1.585})$. Schonhage-Strassen uses FFT for $O(n \log n \log \log n)$. These matter practically for cryptographic computations with $2048$-bit integers.
Key Insight
The distributive law $a(b+c) = ab + ac$ is the single property that makes algebra possible. It connects the additive and multiplicative structures of a ring and is why polynomial manipulation, matrix algebra, and number theory all share the same form.