Roommate Utility Bill Split Calculator

Enter one utility bill and how long each roommate was actually in the house, and this calculator hands back what each person owes. It supports the three splits that housemates actually argue about: a flat equal share, a person-day split that prorates anyone who moved in or out mid-cycle, and a bedroom-share split weighted by room size. Fixed service charges — the connection fee you pay whether or not anyone is home — are separated out and split equally, because they are not usage. Every allocation is reconciled back to the bill total so the shares always add up to the penny.

Calculator

This calculator runs in your browser. Enable JavaScript for live results — the inputs, formula and worked example below remain fully readable without it.

Inputs this calculator takes, with typical values
InputWhat to enterExample
Total bill amountThe amount due on this one bill, taxes included, exactly as printed on the statement.240 $
Fixed service charges in that totalCustomer charge, meter charge or delivery minimum — the part billed regardless of how much you used. Enter 0 if the bill has none.30 $
Days in the billing periodCount from the service start date to the service end date on the statement, not the calendar month.30 days
Split methodPerson-days is the default because it is the only method that handles a mid-cycle move-in correctly.Person-days occupied
Roommate A — person-days occupiedDays in the period this person lived here. If a couple shares the room, enter double the days.30 days
Roommate B — person-days occupiedDays in the period this person lived here. Enter 0 for a room that stood empty all cycle.30 days
Roommate C — person-days occupiedDays in the period this person lived here. A move-in on the 16th of a 30-day cycle is 15 days.15 days
Roommate A — bedroom weightUsed only by the bedroom-share method. Enter room area in square feet, or a simple relative number such as 1.2 for the master.1
Roommate B — bedroom weightUse the same unit for all three rooms — only the ratio between them matters.1
Roommate C — bedroom weightA smaller box room typically carries a weight of 0.7 to 0.85 against a standard bedroom at 1.0.8

It returns

  • Roommate A owes — Fixed-charge share plus usage share under the method you selected.
  • Roommate B owes
  • Roommate C owes
  • Usage portion being allocated — Bill total minus the fixed service charges.
  • Total person-days in the period
  • Shares add back to — Must equal the bill total. If it does not, an input is out of range.

The formula

si=Fn+(BF)dijdj
si=Fn+(BF)widijwjdj

In plain text: share_i = F / n + (B − F) × d_i / Σd_j

  • s_iAmount roommate i owes on this bill ($)
  • BTotal bill amount ($)
  • FFixed service charges inside that total ($)
  • nNumber of roommates who occupied the property during the period (count)
  • d_iPerson-days roommate i occupied the property (days)

The fixed portion is divided equally because it is billed whether or not anyone uses the service. The usage portion is divided by occupancy. Because the weights sum to one, the shares always reconcile to B exactly.

Updated Category Tipping, Bills & Shared Household Costs Verified against published test cases Reading time 13 min

What a fair utility split actually means

A utility split is a rule for turning one bill into several amounts that add back to it exactly. That last property is the one people forget, and it is the source of most shared-house arguments: someone rounds their share down, someone else pays the remainder, and by the third month nobody can reconstruct who is ahead.

The rule you choose should match what drives the bill. A water bill is almost entirely usage, and usage tracks how many people were in the house and for how long. An internet bill is almost entirely a flat subscription, and it does not care whether you streamed for forty hours or four. An electricity bill in a house with electric heat sits somewhere in between, and the space with the biggest window and the worst insulation genuinely costs more to keep warm.

This calculator implements three rules. Equal shares divides the whole bill by the number of people who lived there during the period. Person-days divides the usage portion in proportion to how many days each person was actually resident, which is the only method that handles a mid-cycle move correctly. Bedroom share weights the usage portion by room size and then prorates that by days, which is the convention most often written into a house agreement when the rooms are visibly unequal.

All three separate the fixed service charge from the usage. Utilities in most jurisdictions bill a customer charge, meter charge or delivery minimum that appears whether the meter turned or not. That amount is a cost of having the service connected, so it splits equally among everyone who benefited from having the service available. If you split it by usage, the person who was away for three weeks subsidises nothing and the person who stayed pays for the meter twice over.

The formula, term by term

Start from the bill total B and pull out the fixed charges F. What remains, B − F, is the usage pool. Every method divides the usage pool by a set of weights that sum to one, which is what guarantees the shares reconcile.

F / n is the fixed share. n counts the roommates with at least one occupied day, not the number of bedrooms. A room that stood empty for the entire cycle does not owe a fixed share, because there was nobody there to benefit from the connection. If the empty room is a landlord's problem — a vacancy the remaining tenants are not responsible for — the remaining roommates absorb it, and that is exactly what this calculator does.

d_i / Σd_j is the usage weight. Read d_i as person-days, not calendar days: a couple sharing one bedroom for a 30-day cycle contributes 60 person-days, because two people run two sets of showers. That single convention lets one input field cover both partial-month residency and unequal head count per room.

The bedroom-share variant replaces d_i with w_i·d_i. The weights are relative, so it makes no difference whether you enter room areas in square feet, square metres, or a scale where the master is 1.2 and the box room is 0.8 — only the ratios matter. Multiplying by days keeps the proration: a large room occupied for half the cycle carries half its weight.

Because every weight set is normalised by its own sum, the reconciliation is exact by construction. The Shares add back to output exists so you can see it: if it does not equal your bill total, an input is out of range rather than the arithmetic being wrong.

Worked example: a $300 electricity bill with a mid-month move-in

Three roommates share a house on a 30-day billing cycle. The statement shows $300 due, of which $60 is a fixed customer and delivery charge. A and B were there all 30 days. C moved in on the 16th, so C occupied 15 days.

  1. Separate the fixed charge. Usage pool = $300 − $60 = $240.
  2. Split the fixed charge equally. Three people occupied the house at some point, so each owes $60 ÷ 3 = $20.
  3. Total the person-days. 30 + 30 + 15 = 75 person-days.
  4. Price one person-day. $240 ÷ 75 = $3.20 per person-day.
  5. Allocate usage. A: 30 × $3.20 = $96.00. B: 30 × $3.20 = $96.00. C: 15 × $3.20 = $48.00.
  6. Add the two parts. A owes $20 + $96 = $116.00. B owes $116.00. C owes $20 + $48 = $68.00.
  7. Reconcile. $116.00 + $116.00 + $68.00 = $300.00, the bill total.

Compare that with a naive equal split, which would charge everyone $100. C would pay $32 more than the person-day method says, and A and B would each pay $16 less. Whether that $32 is worth arguing about is a house decision — but at least now you know the number rather than guessing at it.

Now switch the method to bedroom share with weights 1.0, 1.0 and 0.8, all three occupying the full 30 days and no fixed charge on a $280 bill. Weighted room-days are 30, 30 and 24, totalling 84. The usage cost per weighted room-day is $280 ÷ 84 = $3.3333, so the shares are $100.00, $100.00 and $80.00.

Choosing the method — and how to read the result

Pick the method from the bill, not from who is loudest. A quick test: ask what would happen to this bill if one person were away for the whole month. If it would barely move, the cost is fixed and an equal split is honest. If it would drop noticeably, it is usage and person-days is honest.

In practice that puts internet and any flat-rate service on equal shares, water and sewer firmly on person-days, and gas and electricity on person-days too unless your house has an obvious asymmetry — an electric heater in one room, a window unit in another — that a bedroom weight captures better.

Watch the Share of bill column in the table. A person-day split moves shares much less than people expect: someone who missed a full week of a 30-day cycle only drops from 33.3% to about 27.7% of a three-way usage pool, because the other two absorb the difference. If your housemate expects a quarter off for a week away, show them that column.

Treat any share above 50% for one person in a three-person house as a prompt to check the inputs rather than a result to send round. It happens legitimately when two rooms were vacant, but it also happens when someone entered person-days for a couple in one room and calendar days for everyone else.

Finally, decide the rounding rule before the first bill, not after. The convention that causes least friction is to round each share to the nearest cent and give the remaining one or two cents to whoever pays the utility company directly, since they are the person carrying the float.

Which split fits which bill

Typical structure of common household utilities and the split that matches it.
BillMostly fixed or mostly usageRecommended splitWhy
Internet / broadbandAlmost entirely fixedEqual sharesThe price does not change with how much anyone streams.
Water and sewerSmall fixed charge, mostly usagePerson-daysShowers, laundry and toilets scale directly with people present.
Electricity, no electric heatCustomer charge plus usagePerson-daysLighting, cooking and devices scale with occupancy.
Electricity with room heaters or window ACUsage, unevenly distributedBedroom shareA larger or worse-insulated room genuinely draws more.
Natural gas, shared central heatMeter charge plus usagePerson-days or bedroom shareCentral heat serves the whole house; weight only if rooms are metered or visibly unequal.
Waste collectionEntirely fixed per householdEqual sharesBilled per bin, not per bag.
Streaming subscriptionsEntirely fixed per accountEqual shares among usersSplit among the people on the profile list, not the lease.

The fixed versus usage split is printed on most utility statements as separate line items. Where it is not, the customer charge is usually the flat dollar amount that repeats identically month to month.

Mistakes that make a split unfair

  • Splitting the fixed charge by usage. The meter charge is the price of having the service connected. Someone away for three weeks still had running water available every one of those days.
  • Using calendar months instead of the service period. Utility cycles are typically 28 to 33 days and rarely start on the 1st. Prorating a move-in against the wrong window shifts a few dollars every single month, always in the same direction.
  • Counting rooms instead of people. Two people in one bedroom generate roughly twice the water and laundry of one. If your house has a couple in it, use person-days and double their entry.
  • Prorating a bill that is already prorated. If the utility issued a final and an opening statement around a move, the proration is in the bill already. Enter each statement separately with the days it actually covers.
  • Assuming a guest is free. A partner staying four nights a week for a full cycle is roughly 17 extra person-days. Agree a guest threshold in writing before it becomes a grievance.
  • Reallocating after the fact. Changing method retroactively because this month's result is unfavourable destroys trust faster than any single bill. Fix the method for a lease term.

This is an allocation, not a legal apportionment

Most residential leases make tenants jointly and severally liable, meaning the utility can pursue any named account holder for the whole balance regardless of what your house agreed internally. A split calculated here is an agreement between roommates, and it does not change who the provider can bill. If you are the named account holder, that risk is yours, and it is a reasonable argument for collecting shares before the due date rather than after it. Where a landlord bills utilities back to tenants, some jurisdictions regulate the method and require the calculation to be disclosed — check your local tenancy rules before adopting a weighted method.

Where this sits among the other shared-cost tools

A utility split is one of a family of proportional-allocation problems, and the arithmetic recurs. When the shared item is a restaurant check rather than a bill, and people ordered different things, the right tool is the uneven bill split calculator, which allocates tax and tip in proportion to what each person actually ordered rather than by head count. When the shared item is a car journey, the carpool cost split calculator divides fuel and wear across passengers and legs.

Some of the underlying costs are worth attacking rather than dividing. If your water bill is the one causing arguments, the toilet flush water usage calculator shows how much of it is going down the toilet and whether a fixture swap pays for itself. If the electricity bill is the problem, the laundry load cost calculator prices a single wash-and-dry cycle so you can see whether the dryer is worth what everyone is paying. For the flat-rate bills that split equally, the streaming vs cable cost calculator and the cell phone plan comparison calculator attack the subscription itself.

One structural note: this calculator handles three roommates because that covers the large majority of shared houses and keeps the form readable. For four or more, run it in pairs of groups — allocate the bill between two blocks first using their combined person-days, then split each block's amount again. Because the person-day weights are linear, splitting in two stages gives exactly the same answer as splitting in one.

Key terms

Fixed service charge
The flat amount a utility bills each cycle for having the connection, meter and account in place. Called a customer charge, basic service charge, standing charge or delivery minimum depending on the provider.
Person-day
One person present for one day. A couple in one room for 30 days is 60 person-days. It is the natural unit for anything that scales with both head count and time.
Billing period
The service dates the statement actually covers, printed as a from and to date. It is normally 28 to 33 days and seldom aligns with the calendar month.
Proration
Charging a fraction of a cost proportional to the fraction of the period a person was liable for it. A move-in on day 16 of a 30-day cycle prorates to 15/30 of the usage share.
Joint and several liability
A lease term making each tenant individually responsible for the entire obligation, so a landlord or utility can collect the full amount from any one of them.

Frequently asked questions

How do I split a utility bill when someone moved in mid-month?

Prorate by days occupied, not by month. Count the days each person was resident inside the statement's service period, split the fixed service charge equally among everyone who lived there at any point, and divide the remaining usage in proportion to those day counts. A person who moved in on the 16th of a 30-day cycle carries 15 days, which in a three-person house works out to roughly a fifth of the usage pool rather than a third.

Should the internet bill be split equally or by usage?

Equally. A broadband subscription is a flat monthly price that does not change with how much data anyone moves, so there is no usage component to allocate. The same logic applies to waste collection and to any streaming subscription — divide by the number of people who have access, not by how much they watch. Enter the whole amount in the fixed service charges field and the calculator will split it equally for you.

Is it fair to charge more for the bigger bedroom?

It is fair for rent, and defensible for heating and cooling, but weak for water. Bedroom size drives the cost of conditioning that space, so a bedroom weight is reasonable on a gas or electric bill in a house with room heaters or window units. It has almost nothing to do with a water bill, where the cost comes from showers, laundry and toilets that scale with people. Many houses use a bedroom weight for rent and person-days for every utility.

What counts as a fixed service charge on my bill?

It is the line that repeats at exactly the same amount every cycle regardless of consumption. Providers label it a customer charge, basic service charge, standing charge, meter charge or delivery minimum. On a US electricity statement it is typically the first line under the account summary; on a water bill it is often labelled as a base or readiness-to-serve charge. If your statement shows no such line, enter zero and the whole bill will be allocated as usage.

How do I handle a room that was empty all month?

Enter zero days for that roommate. The calculator then assigns them nothing and divides both the fixed charge and the usage among the people who were actually there. That is the correct treatment when the vacancy is the landlord's problem. If your house agreement says the remaining tenants cover a vacant room, add the vacant room's expected share back manually — the calculator will not do it for you, because in most leases that obligation does not exist.

Do overnight guests change the split?

Only if you agree in advance that they do. The mechanism is straightforward: add the guest's nights to the host's person-day count. A partner staying four nights a week across a 30-day cycle adds about 17 person-days, which in a three-person house shifts a meaningful amount of the usage pool. The problem is never the arithmetic, it is agreeing the threshold, so write it into the house agreement at the start of the lease rather than after the first big water bill.

Why do the shares not change much when someone is away for a week?

Because the person-day denominator falls at the same time as the numerator. In a three-person house on a 30-day cycle, one person missing seven days takes total person-days from 90 to 83. Their share goes from 33.3% to 27.7% of the usage pool — a drop of about 5.6 percentage points, not the 23% of the month they were absent. The other two each pick up roughly 2.8 points. This is normal and it is why the calculator shows the share-of-bill column.

Can I use this for more than three roommates?

Yes, in two stages. Split the bill between two groups first, entering each group's combined person-days as one roommate, then run the calculator again on each group's amount with a zero fixed charge. Because the person-day weights are linear and normalised, splitting in two stages produces exactly the same answer as splitting all at once. Keep the fixed charge in the first stage only, so it is divided once across everyone rather than twice.

References