Skip to main content

Precalculus Review Materials

Section 1.1 Real numbers and operations

So you think you know about real numbers? This section is intended as a review of some of their properties, and some properties of operations that are commonly used.
We assume familiarity with the basic operations of addition, subtraction, multiplication, division and exponentiation, even though we will review some of their properties in the subsections that follow. We also assume familiarity with the precedence rules for these operations. These are sometimes remembered using the acronym BEDMAS, which stands for Brackets, then Exponents, then Multiply and Divide before you Add and Subtract: Always do what’s inside brackets first, and then perform other operations in the order just specified. For example:
  • \(\displaystyle 3 \cdot 4 + 5 = 12 + 5 = 17\)
  • \(\displaystyle (-2) \cdot (4 + 5) = (-2) \cdot 9 = -18\)
  • \(\displaystyle 7 \cdot (2 \cdot 13 - 6)^2 = 7 \cdot (26 - 6)^2 = 7 \cdot 20^2 = 7 \cdot 400 = 2800\)
  • \(\displaystyle (-4)^2 = (-4)(-4) = 16\)
  • \(-4^2 = -16\) because \(-4^2\) denotes the negative of the number \(4^2\text{,}\) or equivalently because \(-4^2 = 0-4^2\) and exponentiation has precedence over subtraction.

Subsection 1.1.1 Commutativity

Addition of real numbers is commutative, which means that \(a + b = b + a\) for all real numbers \(a\) and \(b\text{.}\) For example, \(1+4 = 4+1\text{.}\) Both sums equal 5. Commutativity of addition allows a sum of finitely many real numbers to be rearranged without changing its value. For example,
\begin{equation*} 1 + 2 + 4 + 6 + 7 + 8 + 9 = 4 + 6 + 8 + 2 + 1 + 9 + 7 \end{equation*}
Similarly, multiplication of real numbers is commutative, which means that \(a \times b = b \times a\) for all real numbers \(a\) and \(b\text{.}\) For example, \(4 \times 6 = 6 \times 4\text{.}\) Both products equal 24.
Remember that there are several alternate notations for multiplication. We commonly write \(a \cdot b\) or \(ab\) instead of \(a \times b\text{.}\) In these notations, the equality in the previous paragraph is written \(a \cdot b = b \cdot a\text{,}\) or \(ab=ba\text{.}\)
Commutativity of multiplication allows a product of finitely many real numbers to be rearranged without changing its value. For example,
\begin{equation*} 2 \cdot 5 \cdot 3 \cdot 5 \cdot 2 = 2 \cdot 2 \cdot 5 \cdot 5 \cdot 3 \end{equation*}

Subsection 1.1.2 Associativity

Addition of real numbers is associative, which means that \((a+b)+c = a + (b+c)\) for all real numbers \(a, b\) and \(c\text{.}\) For example, \((1+4) + 6 = 5+6 = 11\text{,}\) and \(1+(4+6) = 1+10 = 11\text{,}\) so as expected \((1+4)+6 = 1 + (4+6)\text{.}\)
Associativity is the property that lets us compute sums of finitely many terms by grouping them in a convenient way. This is equivalent to bracketing the terms as we wish. For example,
\begin{equation*} \begin{aligned} 4 + 6 + 8 + 2 + 7 + 1 + 9 &= (4 + 6) + (8 + 2) + 7 + (1 + 9) \\ &= 10 + 10 + 7 + 10 \\ &= 37 \end{aligned}\text{.} \end{equation*}
Commutativity and associativity together allow us to compute sums of finitely many terms by rearranging the numbers and adding them in whichever we want. For example,
\begin{equation*} \begin{aligned} 1 + 2 + 4 + 6 + 7 + 8 + 9 &= 4 + 6 + 8 + 2 + 1 + 9 + 7 &\text{(by commutativity)} \\ &= (4 + 6) + (8 + 2) + (1 + 9) + 7 &\text{(by associativity)} \\ &= 37 \end{aligned} \end{equation*}
Similarly, multiplication real numbers is associative, which means that \((a \cdot b) \cdot c = a \cdot (b \cdot c)\) for all real numbers \(a, b\) and \(c\text{.}\) For example, \((3\cdot4)\cdot25 = 12\cdot 25 = 300\text{,}\) and \(3\cdot(4\cdot25)=3\cdot100=300\text{,}\) so as expected \((3\cdot4)\cdot25 = 3\cdot(4\cdot25)\text{.}\)
Associativity is the property that lets us compute products of finitely many terms by grouping them in a convenient way instead of having to multiply in the order given. This is equivalent to bracketing the terms as we wish. For example,
\begin{equation*} \begin{aligned} 2 \cdot 5 \cdot 3 \cdot 5 \cdot 2 &= (2 \cdot 5) \cdot 3 \cdot (5 \cdot 2) &= 10 \cdot 3 \cdot 10 \\ &= 300 \\ \end{aligned} \end{equation*}
which is an easier calculation than
\begin{equation*} \begin{aligned} 2 \cdot 5 \cdot 3 \cdot 5 \cdot 2 &= 10\cdot 3 \cdot 5 \cdot 2 \\ &= 30 \cdot 5 \cdot 2 \\ &= 150 \cdot 2 \\ &= 300 \end{aligned} \end{equation*}
Commutativity and associativity together allow us to compute products of finitely many terms by rearranging the numbers and multiplying them in whichever we want. For example,
\begin{equation*} \begin{aligned} 2 \cdot 2 \cdot 3 \cdot 5 \cdot 5 &= 2 \cdot 2 \cdot 5 \cdot 5 \cdot 3 &\text{(by commutativity)} \\ &= (2 \cdot 2) \cdot (5 \cdot 5) \cdot 3 &\text{(by associativity)} \\ &= 4 \cdot 25 \cdot 3 \\ &= (4 \cdot 25) \cdot 3 = 300 \end{aligned} \end{equation*}

Subsection 1.1.3 Distributivity

Multiplication distributes over addition, which means that \(a (b + c) = ab + a c\) for any real numbers \(a, b\) and \(c\text{.}\) Also, \((b + c) a = ba + ca\text{,}\) which can be proved using the previous statement and commutativity. For example,
  • \(\displaystyle 3(4 + 5) = 3 \cdot 4 + 3 \times 5\)
  • \(\displaystyle (6 + 7) \cdot (-3) = 6 \cdot (-3) + 7 \cdot (-3)\)
  • \(\displaystyle 16 + 12 = 4 \cdot 4 + 3 \cdot 4 = (4 + 3) \cdot 4\)
  • \(\displaystyle (-1)\cdot 6 + (-1) \cdot 5 = (-1)(6 + 5)\)
The last two bullet points illustrate the most common use of distributivity, that is, when factoring. In such situations, the distributive rule \(a (b + c) = ab + a c\) is being used from right to left.
Distributivity is used to expand expressions like \((a + b)(c + d)\text{.}\) For the moment, regard \((a + b)\) as a single item. Then, by distributivity, \((a + b)(c + d) = (a + b)c + (a+b)d\text{.}\) Using distributivity again gives \((a + b)(c + d) = (a + b)c + (a+b)d = ac + bc + ad + bd\text{.}\) Rearranging the sum as \(ac + ad + bc + bd\) gives the FOIL rule for multiplying binomials. FOIL stands for First, Outer, Inner, Last, i.e., expand by multipling the First terms, then the Outer terms, then the Inner terms, then the Last terms.

Subsection 1.1.4 Identity elements

The number 0 is the identity element for addition, which means that \(a + 0 = 0 + a = a\) for any real number \(a\text{.}\) We call 0 the additive identity.
The number 1 is the identity element for multiplication, which means that \(a \cdot 1 = 1 \cdot a = a\) for any real number \(a\text{.}\) We call 1 the multiplicative identity.

Subsection 1.1.5 Additive inverses and subtraction

For any real number \(a\text{,}\) the additive inverse of \(a\) is the real number \(b\) such that \(a + b = 0\text{.}\) The additive inverse of \(a\) is commonly written \(-a\text{,}\) and called negative \(a\).
Remember that the number \(-a\) equals \((-1)\cdot a\text{.}\) This is important when factoring; for example
\begin{equation*} \begin{aligned} \pi^2-\pi&=\pi\cdot\pi-\pi \\ &=\pi\cdot\pi+(-1)\pi \\ &=(\pi-1)\cdot\pi \end{aligned} \end{equation*}
Using the rules we have accumulated so far, you could now verify that, for any real numbers \(a,b\text{:}\)
  • \(a(-1) = -a\text{,}\)
  • \((-a)b = -(ab)\text{,}\)
  • \(a(-b) = -(ab)\text{,}\)
all of which are familiar rules.
The additive inverse of \(-a\) is \(a\) because \((-a) + a = a + (-a) = 0\text{.}\) In other words, \(-(-a) = a\text{.}\)
For example, \(4 + (-4) = 0\text{,}\) so \(-4\) is the additive inverse of 4, and 4 is the additive inverse of \(-4\text{.}\) Since \(0 + 0 = 0\text{,}\) the number 0 is its own additive inverse.
Subtraction can be defined in terms of adding the (additive) inverse. For any real numbers \(a\) and \(b\text{,}\) \(a - b\) is defined to mean \(a + (-b)\text{.}\) For example, \(7 - 3 = 7 + (-3) = 4\text{.}\)
For any real numbers \(a\) and \(b\text{,}\) the additive inverse of \(a-b\) is \(b-a\) because:
\begin{equation*} \begin{aligned} (a - b) + (b - a) &= a + (-b) + b + (-a) \\ &= (a + (-a)) + (b + (-b)) \\ &=0 + 0 = 0 \end{aligned} \end{equation*}
Therefore, \(-(a - b) = (b-a)\text{.}\) This is often useful when simplifying expressions; for example, \((4-7)+(7-4)=(4-7)-(4-7)=0\text{.}\)
Multiplication distributes over subtraction because multiplication distributes over addition. That is, \(a (b - c) = ab - ac\) and \((b - c) a = ba - ca\text{.}\)

Subsection 1.1.6 Multiplicative inverses and division

For any nonzero real number \(a\text{,}\) the multiplicative inverse of \(a\) is the real number \(b\) such that \(a \cdot b = 1\text{.}\) The multiplicative inverse of \(a\) is commonly written \(\frac{1}{a}\text{,}\) and called the reciprocal of \(a\text{.}\) The reciprocal of \(\frac{1}{a}\) equals \(a\) because \(\frac{1}{a} \cdot a = a \cdot \frac{1}{a} = 1\) for any non-zero real number \(a\text{.}\) For example, \(4\cdot\frac{1}{4} = 1\text{,}\) because \(\frac{1}{4}\) is the multiplicative inverse of \(4\text{.}\) Since \(1 \cdot 1 = 1\text{,}\) the number 1 is its own multiplicative inverse, that is \(1 = \frac{1}{1}\text{.}\)
The number 0 does not have a reciprocal because \(0 \cdot b = 0\) for any real number \(b\text{,}\) thus the equation \(0 \cdot b = 1\) can never be true.
Division can be defined in terms of of multiplying by the reciprocal. For any real numbers \(a\) and \(b\) such that \(b \neq 0\text{,}\) \(a \div b=a \cdot \frac{1}{b}\text{.}\) The number \(\frac{1}{b}\) exists because \(b \neq 0\text{.}\) We also write \(a \div b\) as \(a / b\) or as \(\frac{a}{b}\text{.}\)

Exercises 1.1.7 Practice Problems

1.

Evaluate \(3 + 6 \cdot (5 + 4) \div 3 - 7\) using the order of operations.
Answer.
\(14\)

2.

Evaluate \(9 - 50 \div (8 - 3)^2 \cdot 2 + 6=\) using the order of operations.
Answer.
\(11\)

3.

Evaluate \(5 \cdot 8 + 6 \div 6 - 12 ^ 2=\) using the order of operations.
Answer.
\(-103\)

4.

Without using a calculator, show that
\begin{equation*} (36-24)\cdot\left(\frac{\pi}{2} -\frac{\pi}{4}\right) + (112 - 115)\pi = 0\text{.} \end{equation*}

5.

Without using a calculator, show that
\begin{equation*} 7\left(\pi+4\right) + 5\left(\pi+2\right)=12\left(\pi+4\right)-10\text{.} \end{equation*}

6.

Without using a calculator, show that
\begin{equation*} 2+5\sqrt{2}+9=\left(\sqrt{2}+3\right)^2-\sqrt{2}\text{.} \end{equation*}