# Financial due diligence on an insurer: the analyst's checklist
In 2005, Hurricane Katrina exposed a hard truth: several insurers with strong headline balance sheets turned out to be leaning on reinsurers who couldn't or wouldn't pay in full. The insurers looked solvent on paper. The paper was wrong. Twenty years later, the same forensic questions apply, whether you are buying shares in a listed carrier, underwriting a private equity acquisition, or extending credit to an insurance group.
Insurance balance sheets are opinions dressed as numbers: reserves are estimates of future claims, and "assets" often depend on a counterparty's promise to pay. Financial due diligence (FDD) on an insurer is the discipline of testing those opinions before you rely on them. This lesson gives you a repeatable checklist.
A bank's balance sheet risk is mostly about assets going bad. An insurer's risk runs both ways: assets (investments) can lose value, but liabilities (reserves for future claims) can also turn out to be understated. That second risk is harder to see and easier to hide.
Two regulatory regimes anchor the numbers you'll be checking:
Both regimes require insurers to hold capital against risk and to disclose it, but the accounting mechanics differ enough that cross-border comparisons need adjustment. Keep that in mind before comparing a US insurer's RBC ratio directly to a European insurer's Solvency Capital Requirement (SCR) coverage ratio.
Reinsurance is insurance that insurers buy from other insurers (reinsurers) to offload part of their risk. A recoverable is the amount the primary insurer expects to collect from the reinsurer once a claim is paid.
What to check:
Worked example: an insurer reports $500 million in reinsurance recoverables. If $150 million sits with a reinsurer rated BBB, a conservative analyst might apply a 20% haircut to that tranche, roughly $30 million, reducing effective recoverable assets to $470 million. That adjustment can meaningfully change your view of net tangible equity.
Insurers are examined regularly. Do not just read the last filed statement; read what the regulator said about it.
A capital ratio that looks fine but sits next to a regulatory capital add-on is not fine. Treat correspondence as the annotated footnotes to the official number.
Insurance groups are often complex webs of holding companies, reinsurance captives, and affiliated asset managers. Related-party transactions are deals between entities under common control, and they are a classic place to hide weak economics.
Key questions:
This is not automatically fraud; affiliated reinsurance and captives are legal and widely used (Bermuda has built an entire industry on it). But undisclosed or off-market terms shift risk from the entity you are buying to one you cannot see.
AM Best, S&P Global Ratings, Moody's, and Fitch assign financial strength ratings (FSR) to insurers, an independent read on claims-paying ability.
Do not just read the current rating. Read the trajectory:
A useful public resource for understanding how these ratings are constructed is AM Best's ratings methodology overview.
Vérification des acquis
1. What is the core lesson from the post-Katrina discovery that some insurers' strong balance sheets were misleading?
2. Why does the lesson describe insurance balance sheets as 'opinions dressed as numbers'?
3. How does an insurer's balance sheet risk fundamentally differ from a bank's, according to the lesson?
4. Select ALL correct answers about why comparing a US insurer's RBC ratio directly to a European insurer's SCR coverage ratio is problematic.
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers describing why liability-side risk (reserve understatement) in insurers is harder to detect than asset-side risk.
Sélectionnez toutes les réponses correctes.
Say you're assessing a mid-size US personal lines insurer for acquisition.
| Check | Finding | Read |
|---|---|---|
| Reinsurance recoverables | $200M total, $60M with a B++ rated reinsurer, uncollateralized | Apply haircut, flag concentration |
| Regulatory correspondence | State market conduct exam cited slow claims payment in prior year | Reputational and potential remediation cost risk |
| Related-party | 30% of premium ceded to affiliated Cayman reinsurer, terms undisclosed | Request full treaty terms before proceeding |
| Rating action | AM Best moved outlook to negative six months ago | Confirms deteriorating trend, cross-check with reserve development |
None of these four items alone is disqualifying. Together, they form a pattern: reserve or reinsurance quality concerns, echoed independently by a regulator and a rating agency, and obscured partly through affiliated transactions. That convergence is the signal experienced FDD teams look for.
For reserve adequacy specifically, one added technique: compare incurred-but-not-reported (IBNR) reserve development over the last five years. IBNR is money set aside for claims that have happened but haven't yet been reported. If actual claims consistently come in higher than reserved (adverse development), the insurer has a pattern of underreserving, a leading indicator worth more than a single year's ratio.
# Simple reserve development check (illustrative)
reserves_booked_year1 = 100 # $M, booked at year-end
actual_paid_plus_case_reserves_3yrs_later = 118 # $M, true cost once matured
adverse_development = actual_paid_plus_case_reserves_3yrs_later - reserves_booked_year1
development_ratio = adverse_development / reserves_booked_year1
print(f"Adverse development: ${adverse_development}M ({development_ratio:.0%})")
# Output: Adverse development: $18M (18%)An 18% adverse development ratio, repeated across multiple accident years, is a red flag worth building into your valuation as a reserve deficiency, not a one-off.
🎬 [VIDEO: "How Insurance Companies Actually Make Money (and Sometimes Fail)" - https://www.youtube.com/results?search_query=how+insurance+companies+make+money+reserves+reinsurance - search for a reputable finance-explainer channel covering underwriting profit, float, and reserve risk to reinforce these mechanics visually]