Basic Calculator — Free Online Arithmetic Calculator
A clean, no-frills online calculator for everyday arithmetic. Addition, subtraction, multiplication, division, percentages, and sign changes — nothing more, nothing less. Runs entirely in your browser with zero latency, no ads, and no data collection. The calculator you reach for when you just need a quick answer.
Perform basic arithmetic operations
Why a Basic Calculator Still Matters
In a world of smartphone apps and voice assistants, a browser-based calculator might seem redundant. But here's the thing: when you're already at your computer — comparing prices in a spreadsheet, splitting a restaurant bill, or double-checking a receipt — switching to your phone is slower than clicking a browser tab.
This calculator follows the "immediate execution" model (like a standard pocket calculator), not algebraic entry. That means 2 + 3 × 4 gives you 20 (it calculates 2+3=5, then 5×4=20), not 14. If you need proper operator precedence (PEMDAS/BODMAS), use our Scientific Calculator or type the expression into your browser's developer console.
The percentage button works the way most people expect: 200 × 25% gives 50 (25% of 200). But 200 + 25% gives 250 (adds 25% of 200 to itself). This matches how Casio and TI pocket calculators handle percentages — it's designed for quick markup/discount calculations, not pure math.
One thing worth knowing: this calculator uses JavaScript's native floating-point arithmetic (IEEE 754 double precision). For 99.9% of everyday calculations, you'll never notice. But if you type 0.1 + 0.2, the internal result is 0.30000000000000004. We round the display to avoid confusion, but the imprecision exists in every calculator and programming language.
How to Use
- Click number buttons (or use your keyboard) to enter values.
- Click an operator (+, −, ×, ÷) to set the operation.
- Enter the second number and click = for the result.
- Use C to clear all, ± to flip sign, or % for percentage operations.
When You'll Use This
Quick price and tip calculations
Splitting a $127.50 dinner bill four ways? Need to figure out 18% tip on $85? This is faster than unlocking your phone — type the numbers, get the answer, close the tab. No app to open, no permissions to grant.
Verifying spreadsheet formulas
When a cell in Excel shows a number that "doesn't look right," you want a quick independent check. Punch the same calculation here. If the results match, your formula is fine. If they don't, you know where to dig.
Back-of-envelope business math
Revenue per user × user count. Monthly cost × 12. Margin after 30% discount. The kind of arithmetic you do 10 times a day that doesn't justify opening a spreadsheet but is too annoying to do in your head.
Teaching kids basic arithmetic
A distraction-free calculator with big buttons and clear display. No ads, no game suggestions, no in-app purchases. Kids can practice multiplication tables and check their homework without getting sidetracked.
Tips and Gotchas
This is NOT an algebraic calculator
Operations execute immediately in sequence, left to right. 2 + 3 × 4 = 20 here (not 14). If you need proper order of operations (PEMDAS), use the Scientific Calculator. This behavior matches physical pocket calculators — it's not a bug.
The % button has two behaviors
100 × 25% = 25 (percentage of a number). 100 + 25% = 125 (add percentage to base). 100 − 25% = 75 (subtract percentage from base). This is the "business percentage" model — designed for markups and discounts, not pure mathematical percentage.
Use C to fully reset, not just backspace
C clears everything — the display, the pending operation, and any stored intermediate result. If your calculation seems "stuck" or giving unexpected results, hit C and start fresh. There's no undo, so if you need to reference a previous result, write it down first.
Know when to upgrade to Scientific
If you need parentheses, exponents, square roots, or any function beyond +-×÷%, switch to the Scientific Calculator. Trying to work around the lack of parentheses (by manually computing sub-expressions) is error-prone and slower than just using the right tool.
Everyday Calculations
Restaurant bill split with tip
Total bill $156.80, 20% tip, split 4 ways.
Input
156.80 + 20% = 188.16, then ÷ 4Output
$47.04 per person. The + 20% shortcut adds the tip in one step — no need to calculate 20% separately and then add it.Discount price calculation
Item costs $89.99, store offers 35% off.
Input
89.99 − 35%Output
$58.49. The − % shortcut subtracts the discount directly. To find just the discount amount, use 89.99 × 35% = $31.50.Features
- Four basic operations: addition, subtraction, multiplication, division
- Percentage with business logic (markup/discount shortcuts)
- Sign toggle (±) for negative numbers
- Immediate execution model — results update as you type operators
- Keyboard support for power users (0-9, +, -, *, /, Enter, Escape)
- Zero latency — all math runs locally in your browser
- No ads, no tracking, no registration
Frequently Asked Questions
Why does 2 + 3 × 4 give 20 instead of 14?
This calculator uses immediate execution (like a pocket calculator), not algebraic order of operations. It computes left to right: 2+3=5, then 5×4=20. If you need PEMDAS/BODMAS (where multiplication happens before addition), use our Scientific Calculator which supports proper operator precedence and parentheses.
How does the percentage button actually work?
It depends on the preceding operator. With ×: gives you that percentage of the number (200 × 25% = 50). With + or −: adds/subtracts that percentage of the base (200 + 10% = 220, meaning 200 plus 10% of 200). This is the standard "business calculator" behavior for quick markup and discount calculations.
Can I use keyboard shortcuts instead of clicking?
Yes. Number keys (0-9) enter digits, +/-/* and / for operators, Enter or = for equals, Escape or Delete for clear, and . for decimal point. This makes it much faster if you're already typing at your computer.
What happens when I divide by zero?
The calculator displays 0 rather than crashing or showing an error. Mathematically, division by zero is undefined (not infinity — a common misconception). We chose to show 0 as a safe fallback, but be aware that 0 is not the "correct" answer — there is no correct answer for n÷0.
Is my calculation data stored or sent anywhere?
No. Every calculation runs entirely in your browser using JavaScript. Nothing is sent to any server, nothing is logged, and nothing persists after you close the tab. There's no account, no history feature, and no analytics on what you calculate.
Tips & Related Workflows
- Need trigonometry or logarithms? Switch to our Scientific Calculator.
- Calculate percentage discounts and markups with our Percentage Calculator.
- Convert between measurement units with our Unit Converter.
- Estimate loan payments with our Loan Calculator.