Basic Calculator
Addition, subtraction, multiplication, and division — evaluated in the order you press buttons.
0
How to use the Basic Calculator
Enter numbers and operators the same way you would on a physical calculator: type a number, press an operator (+, −, ×, ÷), type the next number, and keep going. The display shows the full expression as you type it — for example, typing 2, ×, 2 shows "2×2" — so you can keep track of a longer calculation before committing to the result. Press = whenever you want the answer. Click the buttons with a mouse, tap them on a touchscreen, or use your physical keyboard for every function on the keypad.
Left-to-right, not order-of-operations
This calculator evaluates each operation as soon as you press the next operator. It does not apply standard math order-of-operations (multiplication/division before addition/subtraction). That mirrors how a simple four-function calculator has behaved since the earliest pocket models: each button press resolves the pending operation immediately rather than waiting to see what comes next in the expression. If you need proper order-of-operations with parentheses, use the Scientific Calculator instead.
Worked examples
12 + 8 × 2 = → (12 + 8) × 2 = 40
10 − 4 ÷ 2 = → (10 − 4) ÷ 2 = 3
5 × 5 − 5 = → (5 × 5) − 5 = 20
Each example resolves the operation that came before the next operator you press, rather than the operation math class rules would prioritize. In the first example, pressing × after typing 12 + 8 locks in 12 + 8 = 20 immediately, so the following × 2 multiplies that running total rather than multiplying just the 8. Keeping this rule in mind while you type prevents the most common source of unexpected results on this kind of calculator: assuming multiplication always happens before addition when it does not here.
Editing and clearing
The ⌫ key deletes one character from the number you are currently typing, so you can fix a typo without starting the whole expression over. The ± key flips the sign of the current number, useful when you need to subtract a negative value or start a calculation from a negative starting point. C clears everything and resets the display to zero. If a calculation produces an error, most commonly from dividing by zero, the display shows "Error" until you press C or start typing a new number, at which point the calculator resets and accepts fresh input.
Common use cases
This calculator fits the everyday arithmetic most people reach for: splitting a restaurant bill, adding up a shopping list before checkout, converting a quick measurement, or running a rough estimate during a conversation without switching to a spreadsheet. Because it behaves like the physical calculator most people grew up using, there is no learning curve and no risk of a surprising result from operator precedence you were not expecting. For anything involving exponents, roots, trigonometry, or an expression where operator order genuinely matters, the Scientific Calculator handles that correctly with parentheses support.
Keyboard shortcuts
Number keys and + − * / for operators, Enter for equals, Backspace to delete a digit, Esc to clear. Every shortcut works as long as you are not typing inside another input field on the page, so you can keep your hands on the keyboard for an entire sequence of calculations without reaching for the mouse.
Decimal precision
Results round to twelve significant digits, which keeps the display readable while still catching floating-point rounding artifacts that can otherwise creep into arithmetic performed in a browser. Numbers larger than one quadrillion, or a result that overflows that range entirely, show as "Error" rather than an unreadable string of digits, since a number that long stops being useful for the everyday math this calculator is built for anyway.
Chaining several operations
Because each operator resolves the previous step immediately, you can chain as many operations as you want in one continuous sequence without ever pressing equals until the very end. Typing 100 − 20 + 5 × 2, for instance, works through the steps in the order you pressed them: 100 − 20 = 80, then 80 + 5 = 85, then 85 × 2 = 170, and pressing equals confirms that final running total. This running-total behavior is exactly what a receipt tape adding machine or an old desktop calculator does, which is part of why this mode feels familiar even to people who have never thought about the distinction between it and algebraic order-of-operations before.
Related: Scientific Calculator for trig, exponents, and proper order-of-operations, or Percentage Calculator for percent-specific math.
Frequently Asked Questions
Is the Basic Calculator free?
Yes — completely free, with no account and nothing sent to a server.
Does it show the full calculation I typed?
Yes — the display shows the entire expression as you build it, like "12+8×2", so you can check your input before pressing equals.
Does it save calculation history?
No. It only shows the current expression and running total. For a full history, use the Scientific Calculator or a dedicated notes app.
Why does 12 + 8 × 2 give 40, not 28?
This calculator evaluates left-to-right in the order you press buttons, like a physical four-function calculator, rather than applying standard math order-of-operations. 12 + 8 = 20, then 20 × 2 = 40.
What happens if I divide by zero?
The display shows "Error." Press C or type any digit to start a new calculation.
Are there keyboard shortcuts?
Yes — number keys, + − * / for operators, Enter for equals, Backspace to delete, and Esc to clear.