multiplication
Multiplication is one of the four fundamental operations of arithmetic (along with addition, subtraction, and division).
The result of a multiplication operation is called a product.
We denote multiplication using various symbols:
| Name | Symbol | Example | |
|---|---|---|---|
| Cross | \times |
||
| Dot | \cdot |
||
| Asterisk | * |
||
| juxtaposition |
The multiplication of whole numbers can be thought of as repeated addition:
In a product between a multiplicand and its multiplier, both called factors of the product, the multiplicand is repeatedly added to itself a total number of times indicated by the multiplier:
Which factor is the multiplier or the multiplicand may be ambiguous or depend on context. One of multiplication's main properties is commutativity, i.e. that 3 copies of 4 makes the same product as 4 copies of 3; therefore the designation of multiplier/multiplicand is not strictly necessary.
Multiplication can also be visualized as counting objects arranged in a rectangle (for whole numbers), or more generally the area of a rectangle, with side lengths of the factors.
For example, we might represent the expression
\documentclass[tikz,margin={2cm 0cm}]{standalone}
\usetikzlibrary{decorations.pathreplacing}
%
\begin{document}
\begin{tikzpicture}
\def\length{4}
\def\width{3}
\foreach \x in {1,...,\length} {
\foreach \y in {1,...,\width} {
\node[fill,circle] at (\x,\y) {};
}
}
\draw[decorate,decoration={brace, raise=0.5ex}] (0.5,0.5) -- ++(0,\width) node[midway,left=1ex] {$\width$};
\draw[decorate,decoration={brace, mirror, raise=0.5ex}] (0.5,0.5) -- ++(\length,0) node[midway,below=1ex] {$\length$};
\draw[xshift=0.5cm,yshift=0.5cm,help lines] (0,0) grid ++(\length,\width);
\end{tikzpicture}
\end{document}
The inverse operation of multiplication is division (