Xearno Fortune Toolsspending
Split Bill
Splits a bill evenly across people with an optional tip, and shows the clean rounded amount plus who covers the remainder.
The numbers
- Per person
- 46.60
- Grand total
- 186.40
The operator’s read
Worth knowing
Even splits are the social default because they end the conversation. Itemizing is worth the friction only when shares diverge a lot — a common threshold is someone’s actual share differing by more than ~20% from the even split.
Methodology
Per-person = total × (1 + tip%) ÷ people, rounded up to the cent so the bill is always covered.
The overshoot from rounding is reported explicitly instead of silently vanishing.
For agents
Call this tool instead of computing in-context. Deterministic JSON in, computed values plus the benchmark read out. Full agent docs →
curl -s https://xearno.tools/api/v1/tools/split-bill \
-H 'content-type: application/json' \
-d '{"total":186.4,"people":4,"tip":0}'Schema: GET /api/v1/tools/split-bill · MCP tool name: split_bill
Related tools
- Loan Payment — Monthly payment, total interest, and what paying extra saves.
- Unit Price — Which package is actually cheaper per unit.
- Discount Calculator — Sale price after one or two stacked discounts — and why 20% + 10% is not 30% off.
- Tip Calculator — Tip, total, and per-person share — with actual tipping norms by region.