DEV Community

Michael Lip
Michael Lip

Posted on • Originally published at zovo.one

Break-Even Analysis: The Number That Tells You If Your Business Idea Is Viable

A friend of mine quit his job to open a coffee shop. He had the branding. He had the location. He had a gorgeous Instagram page. What he didn't have was a break-even calculation. He needed to sell 340 cups of coffee per day just to cover rent, staff, beans, and equipment financing. His foot traffic maxed out at about 180 customers per day. He closed in seven months.

The break-even formula would have told him this in thirty seconds. That's not an exaggeration. It's arithmetic.

The formula

Break-even point in units = Fixed Costs / (Price per Unit - Variable Cost per Unit)

That denominator -- price minus variable cost -- is your contribution margin. It's the amount each sale contributes toward covering your fixed costs after paying for the direct cost of producing that unit.

For the coffee shop: fixed costs were $8,500/month (rent, insurance, loan payments, salaries). He sold coffee at an average of $5.25, and his variable cost per cup (beans, milk, cup, lid, labor for preparation) was $2.25.

Break-even = $8,500 / ($5.25 - $2.25) = $8,500 / $3.00 = 2,834 cups per month
Enter fullscreen mode Exit fullscreen mode

That's 2,834 cups per month, or roughly 94 per day (30-day month). Actually, my earlier number was wrong -- he might have survived if I'm remembering his cost structure correctly. But the point holds. You run the numbers first, not after you sign the lease.

Why contribution margin matters more than gross margin

Gross margin is a percentage: (Revenue - COGS) / Revenue. It tells you how much of each dollar you keep after direct costs. Contribution margin is the absolute dollar amount per unit that goes toward paying fixed costs.

Here's why the distinction matters. Suppose you sell two products:

Product A: sells for $100, variable cost $60, contribution margin $40 (gross margin 40%)
Product B: sells for $20, variable cost $5, contribution margin $15 (gross margin 75%)

Product B has a much higher gross margin percentage, but Product A contributes more dollars per sale toward your fixed costs. If your fixed costs are $10,000/month, you need 250 sales of Product A or 667 sales of Product B to break even. Which is more achievable depends on your market, but gross margin percentage alone doesn't tell you.

The break-even chart

Plotting break-even visually makes the concept click. On the x-axis is quantity sold. On the y-axis is dollars. You draw three lines:

  1. Fixed costs: a horizontal line (they don't change with volume)
  2. Total costs: starts at the fixed cost line and slopes upward (fixed + variable per unit)
  3. Revenue: starts at zero and slopes upward at the price-per-unit rate

Where the revenue line crosses the total cost line is your break-even point. Everything to the left is loss territory. Everything to the right is profit.

The angle between the revenue line and total cost line is determined by your contribution margin. A higher contribution margin means a steeper angle, which means you reach break-even sooner and profits accumulate faster after that point.

Applying this to real decisions

Break-even analysis isn't just for new businesses. It applies to any situation where you're weighing a fixed investment against per-unit returns.

Should you buy equipment or outsource? A 3D printer costs $5,000 and $2 per print in materials. Outsourcing costs $25 per print. Break-even: $5,000 / ($25 - $2) = 218 prints. If you'll print more than 218 items over the machine's life, buy it.

Should you hire an employee or use contractors? A full-time developer costs $120,000/year (salary, benefits, equipment). A contractor costs $150/hour. If you need more than 800 billable hours of development per year, the employee is cheaper. But the break-even calculation doesn't capture productivity, availability, or institutional knowledge. It gives you the baseline number to reason about.

Should you switch from a per-transaction pricing model to flat-rate? If a payment processor charges $0.30 per transaction and the alternative charges $200/month flat, break-even is 667 transactions per month. If you're processing 1,200 transactions, the flat rate saves you $160/month.

Four mistakes in break-even analysis

  1. Underestimating fixed costs. Rent is obvious. But fixed costs also include insurance, accounting fees, software subscriptions, equipment depreciation, and the salary you need to pay yourself. Most people undercount by 20-30%.

  2. Treating variable costs as fixed. If you hire a full-time barista regardless of demand, their salary is a fixed cost. If you bring in part-time staff based on volume, it's variable. Misclassifying costs throws off the entire calculation.

  3. Ignoring the time dimension. Breaking even at 500 units per month is very different from breaking even at 500 units per year. Your cash flow needs to sustain you through the loss period before you reach break-even volume. Many viable businesses fail because they break even in month 14 but run out of cash in month 8.

  4. Assuming linear pricing at scale. Break-even assumes a constant price and constant variable cost. In practice, high volume often means discounts (lower price) but also bulk purchasing (lower variable cost). The break-even point shifts as you scale.

Running scenarios

The real power of break-even analysis is scenario testing. What if I raise prices 10%? What if rent increases? What if I add a second product line? Each scenario changes the break-even point, and comparing them side by side makes the trade-offs concrete.

I built a break-even calculator at zovo.one/free-tools/break-even-calculator that handles fixed costs, variable costs, and pricing inputs, and shows you the break-even point in both units and revenue dollars.

The break-even formula is the simplest and most useful tool in business finance. It doesn't predict success. It predicts the minimum conditions required for success. If you can't hit that minimum, the rest of the business plan is fiction.


I'm Michael Lip. I build free developer tools at zovo.one. 350+ tools, all private, all free.

Top comments (0)