break_even_analysis
Calculate break-even units and revenue from fixed and variable costs and price per unit, showing the sales volume needed to cover costs.
Instructions
Calculate break-even units and revenue given fixed and variable costs.
Args: fixed_costs: Total fixed costs. price_per_unit: Selling price per unit. variable_cost_per_unit: Variable cost per unit.
Returns: dict: break_even_units and break_even_revenue.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fixed_costs | Yes | ||
| price_per_unit | Yes | ||
| variable_cost_per_unit | Yes |