F
FreeConvertingTools

Free Tip Calculator Online

Calculate tip values instantly. Step-by-step formula display and history tracking.

FreeNo SignupAPI Available

Ad space

Ad space

How to use the Tip Calculator

  1. 1

    Open the Tip Calculator tool

  2. 2

    Enter your data or upload your file

  3. 3

    Adjust settings if needed

  4. 4

    Get instant results

  5. 5

    Download or copy your output

Available as API

Integrate this tool into your app.

View documentation

Frequently asked questions

Is the Tip Calculator free?

Yes, our tip calculator is 100% free with no limits, no signup, and no watermarks.

Do I need to create an account?

No. You can use the tip calculator without any registration. Just open it and start using it.

Is my data safe?

Yes. Any files you upload are automatically deleted after 5 minutes. We never store, share, or access your data.

Does this work on mobile?

Yes. The tip calculator is fully responsive and works on phones, tablets, and desktops.

Is there an API for this?

Yes. All our tools are available as API endpoints for developers. Check our API documentation for details.

Working out a fair tip at the table shouldn't require pulling out a calculator app and doing three separate steps by hand, which is exactly the gap this tip calculator closes. Type in the bill total, drag the tip percentage to whatever rate fits the service, and set how many people are splitting the check — the tip amount, the grand total, and each person's share all update together as you move the sliders. No arithmetic, no rounding guesswork, no passing a phone around the table to argue about who owes what.

How the Tip Calculator Works

The layout keeps everything on one screen with three inputs feeding a live result:

  • Bill amount. Type the pre-tip total from the receipt into the amount field. This is the base the rest of the calculation works from.
  • Tip percentage. A slider runs from 0% to 50%, and four quick-select buttons — 15%, 18%, 20%, and 25% — sit right underneath it for the rates people reach for most often. Dragging the slider to an in-between number like 22% works exactly the same as tapping a preset.
  • Number of people. A second slider covers splitting the bill from a single diner up to a party of twenty, updating the per-person share instantly as the group size changes.

Once a bill amount is entered, three result cards appear underneath the inputs: the tip amount in dollars, the total including tip, and what each person owes if the group is splitting evenly. Every one of those numbers recalculates the instant you move a slider or edit the bill field — there's no calculate button to press and no page to reload. If the party's contribution isn't going to be perfectly even (someone ordered a lot more than everyone else, say), the per-person figure is still a solid, fast starting point that most groups round from rather than argue over from scratch.

The same tip math is also available outside the browser interface as a metered API endpoint, documented at /docs, for anyone integrating gratuity calculations into a POS system, an expense app, or another piece of software rather than typing it in manually each time.

Why a Tip Calculator Is Worth Having

Tipping norms vary by service, region, and situation, and getting the number right matters more in some of them than others:

  • Dining out with a group. Splitting a shared bill fairly across several people, especially when the group size isn't a clean divisor of the total, is exactly what the per-person split handles without anyone doing long division at the table.
  • Uncertain or unfamiliar tipping situations. Services like moving crews, tattoo artists, salon visits, or food delivery each carry their own customary tip ranges, and dragging the slider to test a few percentages against the actual dollar amount makes the decision concrete instead of abstract.
  • Checking a tip against a fixed budget. If there's a set amount available for the night out, working backward from a target total helps decide what tip percentage the budget actually supports.
  • Business expense tracking. Freelancers and small business owners who tip regularly for client meals or delivered supplies can use the tool to double-check the arithmetic behind expense entries before filing them.
  • Travel and unfamiliar currencies. When abroad and dealing with a bill in a currency you don't calculate in daily, working out the tip in round numbers first and converting afterward is often easier than trying to do both conversions in your head at once.
  • Group trips with rotating hosts. On a shared vacation or a work trip where different people cover different meals, running each bill through the same tip rate and split keeps the group's contributions consistent instead of one person tipping generously and another tipping thin.

Technical Deep Dive: Tip and Split Math

The calculation behind the tool is simple in isolation, but the sequencing matters once splitting enters the picture.

Tip amount is the bill multiplied by the tip rate expressed as a decimal: tip = bill × (percentage ÷ 100). A $84 bill at 20% gives 84 × 0.20 = $16.80.

Total including tip is simply the bill plus the tip: total = bill + tip. Continuing the example, that's 84 + 16.80 = $100.80.

Per-person share divides the total, not the bill alone, by the number of people: share = total ÷ people. Splitting that $100.80 total five ways comes to $20.16 each. A mistake people make doing this by hand is dividing the bill first and adding a flat tip afterward — that only produces the same answer if everyone is tipping the same percentage of their own portion, which isn't how a shared tip actually works once the group size and rate are set independently.

Rounding is the other detail worth understanding. Currency only exists down to the cent, but division rarely produces a clean two-decimal result — splitting $100.80 across seven people gives $14.4000... repeating, not a tidy number. The calculator displays the mathematically precise per-person figure rather than forcing an artificial round number, which is the right default for checking the math, even though in practice most groups round each person's share up or down slightly at the table and let someone absorb the last few cents of difference.

A quick comparison of how different approaches hold up under real dining-table conditions:

MethodHandles group splitsSpeed under pressureNeeds a device
Mental math (round to 10%, adjust)Poorly for odd group sizesFast but roughNo
Receipt's printed tip guideNot at allInstant lookupNo
Phone calculator (manual steps)Requires multiple manual stepsSlow — several entriesYes
Dedicated tip calculatorBuilt-in split sliderFast, one screenYes

Auto-Gratuity, Service Charges, and When the Slider Isn't Needed

Not every bill needs a manually chosen tip percentage. Larger dining parties — commonly six or more — are frequently subject to an automatic gratuity built directly into the bill, and some venues add a separate, non-negotiable service charge regardless of party size. Both of these show up as a line item on the receipt before you've touched anything. The first step with any bill is checking whether one of these is already present, since running the slider on top of a bill that already includes gratuity results in tipping twice for the same service. If the receipt is silent on the matter, the calculator's default 18% and the quick-select buttons are there for exactly that gap.

Tip Calculator vs Other Ways to Work It Out

There's more than one way to land on a tip amount, and each has a real place depending on the situation:

  • Rounding in your head. Doubling the tax line on a receipt or rounding to a clean 20% works fine for a fast, rough estimate on a simple bill, but it breaks down the moment a group needs to split the total unevenly or the desired rate isn't a round number.
  • The tip guide printed on some receipts. Convenient when it's there, but it usually only covers a couple of fixed percentages and never accounts for splitting across a group.
  • A restaurant's payment terminal. Many terminals now offer preset tip buttons at checkout, but the options are frequently based on the pre-tax subtotal versus the full total inconsistently, and they rarely handle group splits either.
  • A dedicated tip calculator. Combines the rate, the bill, and the group size into one live result, with no ambiguity about what the percentage is being applied to and an instant per-person number to settle the table.

How Your Bill Details Are Handled

Every figure you enter — the bill amount, the tip rate, the party size — stays in your browser's memory for the duration of the session and is processed there using JavaScript. Nothing is transmitted to a server or saved anywhere, and refreshing or closing the page clears it completely. There's no sign-up step standing between you and using the tool, and no record of past bills is kept anywhere on our end.

Common Questions About Tipping Math

Should I tip on the pre-tax or post-tax total?

Tipping norms vary, but many etiquette guides suggest calculating the tip on the pre-tax subtotal, since sales tax isn't something the server or service provider controls. Enter whichever base amount matches your preference into the bill field — the calculator applies the percentage to whatever number you provide.

What's a reasonable tip percentage for standard restaurant service?

15% to 20% is the range most commonly cited for full-service dining in the United States, with 20% increasingly treated as the default for solid service. The four quick-select buttons on the tool cover this range plus 25% for exceptional service, though local norms vary significantly by country and by type of establishment.

How do I split a bill unevenly when people ordered different amounts?

The per-person split assumes an even division across the group, which works well for shared meals or drinks. If individual orders varied significantly, a fairer approach is to calculate each person's tip on their own portion separately rather than relying on the even split — you can run the tool once per person's subtotal for that.

Does the tip percentage apply before or after the tip is added to the total?

The tip percentage always applies to the original bill amount, not to the total after the tip is added. This avoids the tip compounding on itself, which would slightly inflate the amount beyond the intended rate.

Why does my per-person total not divide evenly to the cent?

Splitting a dollar amount across a group frequently produces a result with more decimal places than currency actually supports. In practice, most groups round each share to the nearest cent and let one person absorb the fractional difference, since the amounts involved are typically under a cent or two per person.

Is it rude to tip below the suggested percentage for slow service?

Tipping is generally understood as a reflection of service quality rather than a fixed obligation regardless of experience, so adjusting the rate down for genuinely slow or inattentive service is broadly accepted. The slider makes it easy to test a lower percentage — say 12% instead of 18% — and see the exact dollar difference before deciding, rather than guessing at how much a percentage-point change actually costs.

Related Tools

If the number you're after is a general percentage rather than gratuity specifically, the Percentage Calculator covers the underlying math with more flexible inputs. For working out a sale price rather than an amount added on top of a bill, the Discount Calculator runs the same kind of percentage math in the opposite direction. Traveling and need to convert a bill or tip into another currency before deciding on an amount? The Currency Converter handles that conversion separately from the tip math itself. And if sales tax is part of what's confusing the total on a receipt, the Sales Tax Calculator breaks that portion out on its own, which is worth checking before assuming the whole line item is gratuity.

Ad space

Related tools

Ad space