Money

Tip Calculator

Calculate tip amount, total bill, and per-person cost from a bill and tip percentage.

CALCULATOR

Enter your numbers

Instant results

Tip Summary

$59.00
Per Person (incl. tip)
Tip Amount$9.00
Total Bill$59.00

THE NUMORIX GUIDE

How to use the Tip Calculator

Last reviewed September 14, 2026

What this calculator does

The calculator multiplies billAmount by tipPercent/100 to get tipAmount, adds the tip to the bill, and divides both total bill and tip by max(1, splitPeople).

Formula and method

The calculator multiplies billAmount by tipPercent/100 to get tipAmount, adds the tip to the bill, and divides both total bill and tip by max(1, splitPeople). The result therefore treats the entered bill as the tipping base and splits the total evenly.

Variables and inputs

Enter bill amount, tip percentage, and number of people. Bill and result values are dollars; tip is a percentage; split people is a count and is clamped to at least one by the engine.

Worked example

For a $50 bill, an 18% tip is 50 x 0.18 = $9.00. Total bill is 50 + 9 = $59.00. Split among 3 people, each share is 59 / 3 = $19.67 after currency rounding, and tip per person is 9 / 3 = $3.00.

How to interpret the result

The result is an equal split of the entered bill plus tip. It does not decide whether the bill includes tax or whether the selected percentage fits local service customs; those are choices for the user.

Common mistakes to avoid

Decide whether you want to tip on the pre-tax or post-tax amount before entering the bill. Check the people count, especially when rounding cents creates a one-cent remainder that someone must settle at the table.

Assumptions and limitations

The route applies one percentage to the full entered bill and splits evenly. It does not model tax separately, service charges, different orders, cash rounding, or local tipping rules. It accepts negative numeric input in the engine without a validation layer.

Sources and references

COMMON QUESTIONS

Frequently asked questions

Should I tip before or after tax?

That is a convention and personal choice that varies by location and service. Enter the amount you want to use as the tipping base.

Does everyone pay the same amount?

Yes. The route divides the total bill evenly by splitPeople. It does not allocate different menu orders or drinks to different people.

Why can the individual shares not add exactly to the displayed total?

The engine rounds each per-person value to cents. Dividing a total that is not evenly divisible by the number of people can leave a cent-level remainder.

FROM THE NUMORIX GUIDES

Learn more before you decide