Concepts → D4 crit chance breakeven

Diablo 4 — when does +1% crit chance beat +1% additive damage?

The "minimum crit chance to aim for" question has a closed form. The answer depends entirely on your Critical Strike Damage stat. Below ~33% crit chance with default (250%) CSD, every +1% crit chance beats +1% additive. Above the breakeven, additive starts winning.

The damage formula

D4 hits always land (no to-hit roll). Damage on a single attack:

damage = base × (1 + additive%/100) × (1 + crit_chance%/100 × (csd_mult − 1))

Where csd_mult is the total crit multiplier — 1.5 for a baseline (no CSD stat) crit, 2.5 for a +100% CSD stat, 3.5 for a +200% CSD stat, etc. The two terms are independent multipliers: additive damage scales the base, crit chance + CSD scale the expected per-hit value.

The marginal-value comparison

The marginal value of +1 percentage point of crit chance, holding additive damage at 0:

∂damage/∂(crit_chance) = base × (csd_mult − 1) / 100

The marginal value of +1 percentage point of additive damage, holding crit chance at p%:

∂damage/∂(additive) = base × (1 + p/100 × (csd_mult − 1)) / 100

Set them equal — that's the crit chance at which +1% crit and +1% additive contribute the same DPS:

p_breakeven = 100 × (csd_mult − 2) / (csd_mult − 1)

Below p_breakeven, every +1% crit chance is worth more than +1% additive damage. Above it, additive starts winning.

The breakeven table

Read this as "I should stack crit chance until I hit roughly this percentage, then additive damage takes over."

CSD stat csd_mult p_breakeven Practical read
+0% (base) 1.5× Additive always wins. CSD is too low for crit chance to compete.
+50% 2.0× 0% Borderline. Crit and additive are equivalent at the very start; additive wins thereafter.
+100% 2.5× ~33% Stack crit until 33%, then additive. Default endgame target.
+200% 3.5× 60% Stack crit until 60%. High-CSD builds (Vulnerable + crit-stacking gear) live here.
+400% 5.5× ~78% Stack crit aggressively. Late endgame with Tempering / Mythic Uniques pushing CSD.

Worked example — 100 base, 30% crit, 250% CSD

Live: /strike/100~hit100crit30csd250

With 30% crit chance and 250% CSD, you're slightly under the ~33% breakeven. Crit chance is still slightly more valuable than additive damage at this point.

  • Hit branch (70%): 100 damage
  • Crit branch (30%): 250 damage
  • Expected per attack: 0.7 × 100 + 0.3 × 250 = 145

Compare to /strike/100~hit100crit30csd350 (350% CSD): expected 175 — the same 30% crit chance produces ~21% more damage when CSD is higher, AND the crit-vs-additive breakeven shifts up to 60%, so you should keep stacking crit longer.

What this pillar answers

The marginal-value question between two stat buckets: should you take +1% crit chance or +1% additive damage on a given affix slot? The full closed-form breakeven holds across crit damage values and multiplicative bucket counts; the result is the cleanest possible D4 build decision.

Adjacent build questions compose with this answer rather than replace it:

  • Multi-bucket multiplicative damage — the full additive vs multiplicative pillar covers Vulnerable, Overpower, Berserk, and weapon / skill multipliers as separate buckets. The csd-vs-additive breakeven here is the 2-bucket case that generalises cleanly via composition.
  • Lucky Hit chance — gates secondary-effect procs (chill, poison, freeze). Independent per-hit Bernoulli on top of the damage roll; multiplies into expected proc damage as a separate affix.
  • Armor mitigation curveDR = armor / (armor × 10/9 + C) with C ≈ 5000 at level 60 (per the Maxroll D4 defenses guide). Diminishing returns capped near 90% by the 10/9 denominator factor. Frame as a flat dr<n> at your target's level for the per-attack threshold; the curve itself is a defensive-pillar question.
  • Effective HP / defensive math — the full survival pipeline (resist × armor × block × dodge) answers a different question (can the build survive); the per-hit damage answer composes with EHP for the clear × survive product.
  • Tooltip DPS vs effective DPS — tooltips show per-hit damage; multiply by attack speed × uptime × proc rates for sustained DPS. The per-hit answer is the building block.

Related: Expected strikes to kill covers the "how many hits to drop a monster" math that pairs with this for full DPS-vs-time analysis. The /games/d4/ page lists the engine grammar for D4-style attacks.