calculate_interest_coverage
Calculate the interest coverage ratio: earnings before interest and taxes divided by interest expense — how many times a company can cover its interest obligations from operating earnings. Formula: Interest Coverage = EBIT / Interest Expense. WHEN TO USE: Use to assess credit risk and debt-service capacity; below 1.5 is typically a distress signal, above 3 is comfortable for most industries. WHEN NOT TO USE: Do NOT use for companies with significant non-cash EBIT distortions (large depreciation) — consider EBITDA-based coverage for those. BEHAVIOUR: pure deterministic calculation — no side effects, no network or storage access; idempotent and non-destructive; identical inputs always produce identical outputs. Division by zero or non-finite inputs returns an explicit error instead of a number. RETURNS: JSON object { interest_coverage: number (e.g. 4.2 = 4.2x), inputs }. PARAMETERS: ebit (required): Earnings before interest and taxes (operating income), e.g. 420000. May be negative. interest_expense (required): Annual interest expense, e.g. 100000. Must be > 0.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ebit | Yes | Earnings before interest and taxes (operating income), e.g. 420000. May be negative. | |
| interest_expense | Yes | Annual interest expense, e.g. 100000. Must be > 0. |