How a Basic Calculator Works
A basic calculator performs the four fundamental arithmetic operations: addition, subtraction, multiplication, and division. It processes one operation at a time in the order you enter it, displaying intermediate results as you chain operations together.
When you press an operator (+, −, ×, ÷), the calculator stores your current number and the chosen operation. When you enter the next number and press = (or another operator), it applies the stored operation to produce the result. This is called immediate execution or chain calculation. Each operation executes as soon as the next one is entered.
Marco uses the basic calculator at his Pinewood Falls restaurant to check daily register totals. He enters each transaction amount with +, and the running total updates after each entry. For splitting supplier invoices, he divides the total by the number of deliveries. He uses the tip calculator for the front-of-house team's gratuity breakdown.
The Four Arithmetic Operations
Addition (+): Combines two values. 15 + 7 = 22.
Subtraction (−): Finds the difference. 15 − 7 = 8.
Multiplication (×): Repeated addition. 15 × 7 = 105.
Division (÷): Splits into equal parts. 15 ÷ 7 ≈ 2.14286. Division by zero is undefined.
| Operation | Symbol | Keyboard | Example | Result |
|---|---|---|---|---|
| Addition | + | + | 24 + 18 | 42 |
| Subtraction | − | - | 100 − 37 | 63 |
| Multiplication | × | * | 12 × 8 | 96 |
| Division | ÷ | / | 144 ÷ 12 | 12 |
| Percentage | % | % | 200 × 15% | 30 |
| Square Root | √ | — | √144 | 12 |
Keyboard shortcuts mirror standard desktop calculator conventions. Enter or = triggers calculation.
Using Memory Functions
Memory functions let you store a number for later use without writing it down. This is particularly useful for multi-step calculations where you need an intermediate result.
| Button | Function | Example Use |
|---|---|---|
| M+ | Add display value to memory | Store a subtotal to add more items |
| M− | Subtract display value from memory | Remove a returned item from the running total |
| MR | Recall (display) the memory value | Retrieve your stored result |
| MC | Clear memory to zero | Start a new set of calculations |
An "M" indicator appears in the display area when memory holds a non-zero value.
Leah uses memory functions when calculating ingredient costs at her Pinewood Falls bakery. She multiplies flour price by quantity (M+), then sugar price by quantity (M+), then butter price by quantity (M+), and recalls (MR) to get the total ingredient cost. She uses the margin calculator to set her retail prices.
Order of Operations
This calculator evaluates operations left-to-right as entered (immediate execution), which is how standard handheld calculators work. This differs from the algebraic order of operations (PEMDAS/BODMAS) taught in mathematics:
| Expression | This Calculator (Sequential) | Algebraic (PEMDAS) | Difference |
|---|---|---|---|
| 2 + 3 × 4 | 20 | 14 | Yes |
| 10 − 2 + 3 | 11 | 11 | No |
| 12 ÷ 4 × 3 | 9 | 9 | No |
| 5 + 10 ÷ 2 | 7.5 | 10 | Yes |
Sequential and algebraic evaluation give the same result when operations have equal precedence (all addition/subtraction, or all multiplication/division).
To follow PEMDAS on a basic calculator, compute higher-precedence operations first using memory: calculate 3 × 4 = 12 (M+), then 2 + MR = 14. Or simply use a scientific calculator that handles operator precedence natively.
Common Arithmetic Reference
Quick-reference multiplication table for the most commonly used products.
| × | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
|---|---|---|---|---|---|---|---|---|
| 2 | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 18 |
| 3 | 6 | 9 | 12 | 15 | 18 | 21 | 24 | 27 |
| 4 | 8 | 12 | 16 | 20 | 24 | 28 | 32 | 36 |
| 5 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 |
| 6 | 12 | 18 | 24 | 30 | 36 | 42 | 48 | 54 |
| 7 | 14 | 21 | 28 | 35 | 42 | 49 | 56 | 63 |
| 8 | 16 | 24 | 32 | 40 | 48 | 56 | 64 | 72 |
| 9 | 18 | 27 | 36 | 45 | 54 | 63 | 72 | 81 |
Knowing multiplication tables through 9 × 9 covers nearly all everyday mental math needs.
For more advanced percentage calculations, use the percentage calculator. For fraction arithmetic, try the fraction calculator. For financial calculations involving interest and payments, the compound interest calculator handles the math automatically.
This calculator performs standard four-function arithmetic with sequential evaluation. For calculations requiring algebraic order of operations (PEMDAS/BODMAS), break the problem into steps or use a scientific calculator.