Published by Patrick Mutisya · 14 days ago
Spreadsheets allow you to perform calculations automatically by entering formulae into cells. A formula always begins with an equals sign (=) and can contain numbers, cell references, functions and arithmetic operators.
The following operators are used in most spreadsheet packages (e.g., Microsoft Excel, Google Sheets, LibreOffice Calc):
| Operator | Symbol in Spreadsheet | Mathematical Equivalent | Example |
|---|---|---|---|
| Addition | + | \$a + b\$ | =A1 + B1 |
| Subtraction | - | \$a - b\$ | =A1 - B1 |
| Multiplication | * | \$a \times b\$ | =A1 * B1 |
| Division | / | \$\dfrac{a}{b}\$ | =A1 / B1 |
| Indices (Exponents) | ^ | \$a^{b}\$ | =A1 ^ 2 |
A typical formula follows this structure:
=.Example: To calculate the total cost of 5 items priced in cell B2 with a tax rate of 7% stored in cell C1:
=5 * B2 * (1 + C1)
Spreadsheets follow the standard mathematical order of operations:
^ operator.If you want to change the natural order, use parentheses to group the desired operations.
Below are common scenarios you may encounter in the IGCSE exam.
| Task | Formula | Explanation |
|---|---|---|
| Sum of two cells | =A2 + B2 | Adds the values in A2 and B2. |
| Find the difference between a total and a discount | =C5 - D5 | Subtracts the discount (D5) from the total (C5). |
| Calculate area of a rectangle (length in A1, width in B1) | =A1 * B1 | Multiplies length by width. |
| Convert kilometres to miles (1 km = 0.621371 miles) | =E2 * 0.621371 | Multiplies the kilometre value by the conversion factor. |
| Compound interest for 3 years, rate in C1, principal in B1 | =B1 * (1 + C1) ^ 3 | Raises (1 + rate) to the power of 3 and multiplies by the principal. |
= – the cell will display the text instead of the result.× instead of *).A1 and B1 you have the numbers 12 and 4. Write a formula that returns the result of \$12 \div 4 + 3\$.C2 contains the price of an item (£25). Cell D2 contains the \cdot AT rate (20%). Write a formula to calculate the price including \cdot AT.E3 (base) and F3 (exponent), write a formula that computes \$E3^{F3}\$.G5 and a discount of 15% is stored in H5. Show the formula.=A1 ^ B1 * C1 might give a different result from =A1 ^ (B1 * C1) when A1=2, B1=3, C1=2.Mastering arithmetic operators in spreadsheet formulae enables you to perform a wide range of calculations quickly and accurately. Remember the symbols +, -, *, / and ^, respect the order of operations, and always use parentheses to control the sequence of evaluation.