Multiplicative Inverse
The multiplicative inverse (reciprocal) of a number is the value that, when multiplied by the original number, gives a product of one.
Formula
a \times \left(\frac{1}{a}\right) = 1 \ (a \neq 0)
Definition
The multiplicative inverse of a number is its reciprocal, $1$ divided by that number; multiplying a number by its reciprocal always gives $1$. For a non-zero number $a$, the multiplicative inverse is $1/a$ (or $a^{-1}$), satisfying $a \times (1/a) = 1$; zero has none, since no number times $0$ gives $1$, and division by $b$ is equivalent to multiplying by the multiplicative inverse of $b$: $a/b = a \times (1/b)$. In a field $F$, every non-zero element $a$ has a unique multiplicative inverse $a^{-1}$, and the non-zero elements under multiplication form the group of units $F^*$; in a general ring, units are elements with a two-sided multiplicative inverse, and not all non-zero ring elements need be units.
Example
The reciprocal of $4$ is $1/4$, since $4 \times 1/4 = 1$; the reciprocal of $2/3$ is $3/2$. Solve $5x = 12$ by multiplying both sides by the reciprocal $1/5$: $x = 12/5$. In $\mathbb{Z}/7\mathbb{Z}$ (a field), the inverse of $3$ is $5$, since $3 \times 5 = 15 \equiv 1 \pmod 7$; the extended Euclidean algorithm finds such modular inverses, used in RSA decryption key computation.
Key Insight
To find the reciprocal of a fraction, flip it; to find the reciprocal of a whole number, write it as $1$ over that number. The existence of multiplicative inverses for all non-zero elements is exactly what distinguishes a field (like $\mathbb{Q}$, $\mathbb{R}$, $\mathbb{C}$) from a mere ring (like $\mathbb{Z}$), and is precisely the property that makes division always possible except by zero. Zero's lack of an inverse is not arbitrary: $0 \cdot x = 0 \neq 1$ for any $x$, since $0$ absorbs under multiplication in any ring, which forces division by zero to be undefined in every consistent number system.