Poor Example 8.1.
\begin{equation*}
3+5=8/2=4\text{.}
\end{equation*}
| Symbol | How to read it | Notes on meaning and usage |
|---|---|---|
| \(a=b\) | \(a\) equals \(b\) | \(a\) and \(b\) have exactly the same value. |
| \(a \approx b\) or | \(a\) is approximately equal to \(b\) | Do not write \(=\) when you mean \(\approx\text{.}\) |
| \(P\Rightarrow Q\) | \(P\) implies \(Q\) | If \(P\) is true, then \(Q\) is also true. |
| \(P\Leftarrow Q\) | \(P\) is implied by \(Q\) | If \(Q\) is true, then \(P\) is also true. |
| \(P\Leftrightarrow Q\) or \(P\) iff \(Q\) | \(P\) is equivalent to \(Q\) or \(P\) if and only if \(Q\) | \(P\) and \(Q\) imply each other. |
| \((a,b)\) | the point \(a\) \(b\) | A coordinate in \(\mathbb{R}^{2}\text{.}\) |
| \((a,b)\) | the open interval from \(a\) to \(b\) | The values between \(a\) and \(b\text{,}\) but not including the endpoints. |
| \([a,b]\) | the closed interval from \(a\) to \(b\) | The values between \(a\) and \(b\text{,}\) including the endpoints. |
| \((a,b]\) | The (half-open) interval from \(a\) to \(b\) excluding \(a\text{,}\) and including \(b\text{.}\) | The values between \(a\) and \(b\text{,}\) excluding \(a\text{,}\) and including \(b\text{.}\) Similar for \([a,b)\text{.}\) |
| \(\mathbb{R}\) or \(\mathbf{R}\) | the real numbers | It can also be used for the plane as \(\mathbb{R}^{2}\text{,}\) and in higher dimensions. |
| \(\mathbb{C}\) or \(\mathbf{C}\) | the complex numbers | \(\{a+bi: a,b\in \mathbb{R}\}\text{,}\) where \(i^{2}=-1\text{.}\) |
| \(\mathbb{Z}\) or \(\mathbf{Z}\) | the integers | …, \(-2\text{,}\) \(-1\text{,}\)0,1,2,3, …. |
| \(\mathbb{N}\) or \(\mathbf{N}\) | the natural numbers | \(1,2,3,4, \ldots\text{.}\) |
| \(a\in B\) | \(a\) is an element of \(B\) | The variable \(a\) lies in the set (of values) \(B\text{.}\) |
| \(a\notin B\) | \(a\) is not an element of \(B\) | |
| \(A \cup B\) | \(A\) union \(B\) | The set of all points that fall in \(A\) or \(B\text{.}\) |
| \(A \cap B\) | \(A\) intersection \(B\) | The set of all points that fall in both \(A\) and \(B\text{.}\) |
| \(A \subset B\) | \(A\) is a subset of \(B\) or \(A\) is contained in \(B\) | Any element of \(A\) is also an element of \(B\text{.}\) |
| \(\forall x\) | for all \(x\) | Something is true for all (any) value of \(x\) (usually with a side condition like \(\forall x>0\) ). |
| \(\exists\) | there exists | Used in proofs and definitions as a shorthand. |
| \(\exists!\) | there exists a unique | Used in proofs and definitions as a shorthand. |
| \(f\circ g\) | \(f\) composed with \(g\) or \(f\) of \(g\) | Denotes \(f(g(\cdot))\text{.}\) |
| \(n!\) | \(n\) factorial | \(n!=n(n-1)(n-2)\cdots \times 2 \times 1\text{.}\) |
| \(\lfloor x \rfloor\) | the floor of \(x\) | The nearest integer \(\le x\text{.}\) |
| \(\lceil x \rceil\) | the ceiling of \(x\) | The nearest integer \(\ge x\text{.}\) |
| \(f={\cal O}(g)\) or \(f=O(g)\) | \(f\) is big oh of \(g\) | \(\lim_{x\rightarrow\infty}\sup_{y>x}|f(y)/g(y)|<\infty\text{.}\) Sometimes the limit is toward \(0\) or another point. |
| \(f=o(g)\) | \(f\) is little oh of \(g\) | \(\lim_{x\rightarrow\infty}\sup_{y>x}|f(y)/g(y)|=0\text{.}\) |
| \(x\rightarrow a^{+}\) | \(x\) goes to \(a\) from the right | \(x\) is approaching \(a\text{,}\) but \(x\) is always greater than \(a\text{.}\) Similar for \(x\rightarrow a^{-}\text{.}\) |