Term

Beneficiary

Published May 7, 2026
Definition

A beneficiary is a person, trust, or entity designated to receive assets when an account or policy owner dies. Designations apply to retirement accounts, life insurance policies, annuities, and transfer-on-death (TOD) brokerage accounts, and they override the owner's will for the assets they cover.

The will-vs-beneficiary precedence is the single most-misunderstood point in retail estate planning. A will directs assets that pass through probate; beneficiary designations direct assets that pass outside probate. A divorced retiree whose 401(k) names an ex-spouse as beneficiary will pass the 401(k) to the ex-spouse on death even if the will explicitly disinherits them. The will doesn't reach the 401(k) at all.

Designations come in three tiers: primary, contingent (alternate if all primaries predecease), and per-stirpes vs per-capita distribution rules for when a primary predeceases. Per-stirpes ('by the branch') passes a deceased primary's share to that primary's descendants; per-capita ('by the head') redistributes to surviving primaries. The default varies by custodian and the choice has real consequences when a child predeceases the parent leaving grandchildren.

For retirement accounts, beneficiary identity also drives post-death distribution rules. Spouse beneficiaries can roll into their own IRA and continue tax-deferred growth; non-spouse beneficiaries (since the SECURE Act) generally must drain inherited IRAs within 10 years; trust beneficiaries face complex 'see-through' rules to determine whether the trust qualifies as a designated beneficiary at all.

Why this matters for synthetic data

Test data needs realistic beneficiary trees on every retirement and insurance account: primary and contingent levels, mix of person/trust/charity entities, and deliberate edge cases like an ex-spouse still listed (the most common production-data quality issue), a contingent beneficiary who predeceased, and a trust beneficiary that fails the see-through test. Pre-spouse-death and post-spouse-death snapshots are different scenarios and both should be exercisable.

Common pitfalls

  • Storing only primary beneficiaries — misses contingent-tree edge cases on unfortunate-sequence deaths.
  • Not distinguishing per-stirpes from per-capita — the calculations differ when a beneficiary predeceased.
  • Ignoring 'see-through trust' rules for trust beneficiaries — non-conforming trusts trigger 5-year drain instead of 10-year.
  • Failing to update beneficiary on life events (divorce, remarriage, birth, death) — the single largest source of unintended estate outcomes.

Examples

Beneficiary tree on a retirement account

Three-tier structure with per-stirpes default.

{
  "primary": [
    { "type": "person", "name": "spouse", "share": 1.0 }
  ],
  "contingent": [
    { "type": "person", "name": "child_1", "share": 0.5, "distribution": "per_stirpes" },
    { "type": "person", "name": "child_2", "share": 0.5, "distribution": "per_stirpes" }
  ]
}

Frequently asked questions

Does a will override a beneficiary designation?+
No. Beneficiary designations are non-probate and pass directly. A will only governs probate assets. The exception is some state-specific revocation-on-divorce statutes, which automatically remove an ex-spouse from beneficiary designations in certain account types upon divorce — but the rule is jurisdiction-specific and should not be relied on for planning.
What's the SECURE Act's 10-year rule?+
For most non-spouse beneficiaries who inherit a retirement account from someone who died in 2020 or later, the entire account must be distributed by the end of the 10th year following the year of death. There is no annual minimum (with some exceptions for designated minor children); the entire balance can be drained in year 10. This replaced the prior 'stretch IRA' approach for non-spouses.