Break Even Calculator Formula
Understand the math behind the break even calculator. Each variable explained with a worked example.
Formulas Used
Break Even Units
break_even_units = (price_per_unit - variable_cost) > 0 ? ceil(fixed_costs / (price_per_unit - variable_cost)) : 0Break Even Revenue
break_even_revenue = (price_per_unit - variable_cost) > 0 ? ceil(fixed_costs / (price_per_unit - variable_cost)) * price_per_unit : 0Contribution Margin Per Unit
contribution_margin = price_per_unit - variable_costVariables
| Variable | Description | Default |
|---|---|---|
fixed_costs | Fixed Costs(USD) | 10000 |
price_per_unit | Price Per Unit(USD) | 50 |
variable_cost | Variable Cost Per Unit(USD) | 20 |
How It Works
How to Calculate Break Even Point
Formula
Break Even Units = Fixed Costs / (Price Per Unit - Variable Cost Per Unit)
The denominator is called the contribution margin -- the amount each unit contributes toward covering fixed costs. Once all fixed costs are covered, every additional unit sold generates profit.
Worked Example
A business has $10,000 in fixed costs. Each unit sells for $50 with a variable cost of $20.
fixed_costs = 10000price_per_unit = 50variable_cost = 20
- 01Contribution margin = $50 - $20 = $30 per unit
- 02Break even units = $10,000 / $30 = 334 units
- 03Break even revenue = 334 x $50 = $16,700
Ready to run the numbers?
Open Break Even Calculator