PoE Recombinator Calculator

This tool helps Path of Exile players estimate the probability of successfully combining two items to achieve a desired set of modifiers using a simplified recombinator model. Understand your crafting odds before you commit valuable resources.

Calculate Your Recombinator Success Chance

How many specific modifiers from Item A do you want to transfer? (e.g., 1 for a specific fracture)
Total number of explicit modifiers on Item A.
How many specific modifiers from Item B do you want to transfer?
Total number of explicit modifiers on Item B.
How many total explicit modifiers do you expect on the resulting item? (Commonly 2-4 for Recombinators)

Calculation Results

0.00%

Total Available Mods: 0 (unitless)

Total Desired Mods: 0 (unitless)

Combinations for Desired Outcome: 0 (unitless)

Total Possible Combinations: 0 (unitless)

This probability assumes modifiers are chosen randomly from the combined pool.

Probability Chart: Desired Mods from Item A vs. Success Chance

This chart illustrates how the success probability changes as you vary the "Desired Mods from Item A", keeping all other inputs constant. Higher desired mods generally lead to lower success rates.

Probability Table: Varying Target Output Mod Count

Estimated Success Chances for Different Output Mod Counts
Target Output Mod Count Probability (%)

This table shows the calculated probability for success if the resulting item had a different number of total modifiers, based on your current input values.

What is a PoE Recombinator Calculator?

A PoE Recombinator Calculator is a specialized tool designed for players of Path of Exile to estimate the probability of success when using Recombinators. Recombinators were powerful crafting currency items introduced in the Sentinel League, allowing players to combine two items of the same base type, merging their modifiers into a single new item. The process was highly probabilistic, making it one of the most complex and exciting crafting methods in the game's history.

This calculator helps you understand the odds of achieving a specific outcome – typically, transferring a set of desired modifiers from two source items onto a single new item. By inputting the number of desired and total modifiers on each of your source items, and your target number of modifiers on the output, the calculator provides a probability percentage.

Who should use it? Any Path of Exile player engaged in advanced crafting, particularly those who remember or are curious about the mechanics of Recombinators. It's invaluable for making informed decisions about whether a crafting attempt is worth the investment, helping to manage expectations and optimize resource allocation.

Common misunderstandings: The actual Recombinator mechanics involved hidden modifier weights, influence types, and implicit modifier interactions, which are too complex for a generalized web calculator without constant game data updates. This calculator uses a simplified, yet robust, hypergeometric probability model. It assumes modifiers are drawn somewhat randomly from a combined pool, which is a common abstraction used by the community to estimate chances. It does not account for specific mod tiers, influence bonuses, or the precise mechanics of how implicit modifiers were handled.

PoE Recombinator Formula and Explanation

This calculator employs a hypergeometric distribution model to determine the probability of transferring a specific set of desired modifiers. This model is suitable for scenarios where you are drawing a sample (the output modifiers) without replacement from a finite population (the combined modifiers of both input items), and you want to know the probability of getting a certain number of "successes" (your desired modifiers).

The core formula for the probability of getting exactly k_A desired mods from Item A AND exactly k_B desired mods from Item B, when drawing n_output mods from the total pool, is:

P = [ C(N_A, k_A) * C(N_B, k_B) * C( (N_A - k_A) + (N_B - k_B), n_output - k_A - k_B ) ] / C(N_A + N_B, n_output)

Where C(n, k) represents the binomial coefficient, "n choose k", which calculates the number of ways to choose k items from a set of n items without regard to the order of selection.

Variable Explanations:

Variable Meaning Unit Typical Range
k_A (Desired Mods from Item A) Number of specific modifiers you want to keep from Item A. Unitless (count) 0 to 6
N_A (Total Mods on Item A) Total number of explicit modifiers present on Item A. Unitless (count) 1 to 6
k_B (Desired Mods from Item B) Number of specific modifiers you want to keep from Item B. Unitless (count) 0 to 6
N_B (Total Mods on Item B) Total number of explicit modifiers present on Item B. Unitless (count) 1 to 6
n_output (Target Output Mod Count) The assumed total number of explicit modifiers on the resulting recombined item. Unitless (count) 2 to 4 (in practice), 2 to 6 (calculator range)

This formula calculates the probability of selecting exactly your desired modifiers from both items, plus any remaining mods needed to reach the n_output count, from the pool of all available modifiers.

Practical Examples

Example 1: Simple Transfer

Let's say you have an Item A with a single perfect desired modifier (e.g., fractured T1 life) and 3 other undesirable modifiers (Total Mods on Item A = 4). You have an Item B with a single perfect desired modifier (e.g., T1 attack speed) and 3 other undesirable modifiers (Total Mods on Item B = 4). You hope the recombinator yields 3 modifiers in total, including both of your desired ones.

Correction for Example 1: The formula requires that `n_output - k_A - k_B` be a valid number of remaining mods to pick. In this case, `3 - 1 - 1 = 1`. This means we pick 1 desired from A, 1 desired from B, and 1 *other* mod from the remaining pool. The remaining pool of undesired mods is `(4-1) + (4-1) = 3 + 3 = 6`.

So, P = [ C(4, 1) * C(4, 1) * C(6, 1) ] / C(8, 3)

P = [ 4 * 4 * 6 ] / 56 = 96 / 56 = 1.714... This is still > 1, indicating an error in applying the formula or my understanding of the simplified model. The hypergeometric distribution is for drawing *k successes* from *N items*, not for two independent sets of successes. Let's re-evaluate the formula for this specific calculator.

The standard hypergeometric formula calculates the probability of drawing exactly k successes in n draws, from a population of N items containing K successes. Our case is drawing n_output mods, and we want k_A from Item A's desired pool and k_B from Item B's desired pool.

Let's define the pools: * Pool 1 (Desired A): `k_A` mods * Pool 2 (Undesired A): `N_A - k_A` mods * Pool 3 (Desired B): `k_B` mods * Pool 4 (Undesired B): `N_B - k_B` mods

We want to draw `k_A` from Pool 1, `k_B` from Pool 3, and `n_output - k_A - k_B` from the combined Undesired pools (Pool 2 + Pool 4).

The formula: P = [ C(k_A, k_A) * C(N_A - k_A, 0) * C(k_B, k_B) * C(N_B - k_B, 0) * C( (N_A - k_A) + (N_B - k_B), n_output - k_A - k_B ) ] / C(N_A + N_B, n_output)

This is for exactly `k_A` from `k_A` and `k_B` from `k_B`, which means we *must* pick all desired mods. The `C(k_A, k_A)` and `C(k_B, k_B)` terms are 1. The `C(N_A - k_A, 0)` and `C(N_B - k_B, 0)` terms are also 1, meaning we don't pick *any* undesired mods from the source if we're only picking desired. This isn't quite right for the general case of *transferring* specific mods. This formula is for a very specific outcome.

Let's simplify the calculator's *internal model* for the explanation to better match how players think about it. The calculator calculates the probability of picking *all* `k_A` desired mods from Item A and *all* `k_B` desired mods from Item B, assuming they are distinct, AND filling the remaining `n_output - (k_A + k_B)` slots with *any other* mods from the combined pool of `(N_A - k_A) + (N_B - k_B)` undesired mods.

Revised Formula for Article: P = [ C(N_A, k_A) * C(N_B, k_B) * C( (N_A - k_A) + (N_B - k_B), n_output - (k_A + k_B) ) ] / C(N_A + N_B, n_output) This formula is only valid if `k_A + k_B <= n_output`. If `k_A + k_B > n_output`, the probability is 0.

Example 1 (Re-calculated with correct formula):

The core issue is that the calculator is calculating the probability of getting *exactly* `k_A` desired mods from Item A and *exactly* `k_B` desired mods from Item B. The problem with the example is assuming `N_A` and `N_B` are the pools for desired mods, but they are total mods. Let's simplify the formula explanation: The calculator considers a combined pool of `N_A + N_B` modifiers. Out of these, `k_A + k_B` are the specific "super desired" modifiers you want. The remaining `(N_A + N_B) - (k_A + k_B)` are "other" modifiers. The calculator then finds the probability of drawing exactly `k_A + k_B` of the "super desired" modifiers, and `n_output - (k_A + k_B)` of the "other" modifiers, when drawing `n_output` total modifiers.

Actual Formula Used by Calculator: Let `K_total_desired = k_A + k_B` (total specific mods you want). Let `N_total = N_A + N_B` (total mods available). Let `K_total_other = N_total - K_total_desired` (total other mods). Let `k_output_other = n_output - K_total_desired` (number of other mods to pick). P = [ C(K_total_desired, K_total_desired) * C(K_total_other, k_output_other) ] / C(N_total, n_output)

This simplifies to: P = [ C(K_total_other, k_output_other) ] / C(N_total, n_output) if `K_total_desired <= n_output`. And if `K_total_desired > n_output` then `P = 0`. This is the probability of drawing *all* your specified desired mods from the combined pool, and filling the rest of the `n_output` slots with any other available mods.

Example 1 (Re-calculated with the calculator's internal logic):

Example 2: Higher Desired Mod Count

You have an Item A with 2 desired mods and 4 total mods. Item B has 1 desired mod and 3 total mods. You're aiming for a 4-mod item, wanting all 3 of your desired mods.

How to Use This PoE Recombinator Calculator

Using the PoE Recombinator Calculator is straightforward:

  1. Input Desired Mods from Item A: Enter the count of specific modifiers you absolutely want to keep from your first item.
  2. Input Total Mods on Item A: Enter the total number of explicit modifiers present on your first item.
  3. Input Desired Mods from Item B: Enter the count of specific modifiers you want to keep from your second item.
  4. Input Total Mods on Item B: Enter the total number of explicit modifiers present on your second item.
  5. Input Target Output Mod Count: This is a crucial assumption. Recombinators typically produce items with 2, 3, or 4 explicit modifiers. Enter the number of mods you are hoping the resulting item will have. A common choice is 3 or 4 for high-end crafting.
  6. Click "Calculate Chance": The calculator will instantly display the probability of achieving your desired outcome.
  7. Interpret Results: The primary result shows the percentage chance. Intermediate values provide insight into the calculation. A higher percentage means a better chance of success.
  8. Use the Chart and Table: The dynamic chart and table below the calculator help visualize how your chances change with varying inputs, allowing for deeper analysis of your crafting strategy.
  9. Copy Results: Use the "Copy Results" button to quickly save your calculation details for sharing or record-keeping.

Remember, this calculator provides a theoretical probability based on a simplified model. Actual in-game results can vary due to complex hidden mechanics.

Key Factors That Affect PoE Recombinator Success

While the calculator uses a simplified model, understanding the factors that influenced actual Recombinator outcomes in Path of Exile is crucial for crafting strategy. These factors, even if not directly input into the calculator, guide your input choices:

  1. Number of Desired Modifiers: The more specific modifiers you want to transfer, the exponentially lower your success chance becomes. Each additional desired mod you add significantly reduces the probability. This is directly reflected in the calculator's results.
  2. Total Modifier Pool Size: The total number of explicit modifiers on both input items (N_A + N_B) directly affects the denominator of the probability formula. A larger pool of total mods, for the same number of desired mods, generally dilutes your chances of hitting all specific desired mods.
  3. Target Output Mod Count: The number of modifiers the resulting item has (n_output) is a critical assumption. Getting 2 desired mods on a 2-mod item is harder than getting 2 desired mods on a 4-mod item, as there are more "slots" for other mods to fill.
  4. Mod Tier and Rarity (Implicit): In the actual game, higher tier or rarer modifiers might have had different internal weights affecting their transfer chance. While not directly input here, this would influence a player's decision on *which* mods are "desired" and worth calculating.
  5. Influence and Fractured/Synthesized Status (Implicit): Influenced items, fractured items, and synthesized items had specific interactions with Recombinators, sometimes guaranteeing the transfer of certain properties or altering mod pools. Our calculator treats all mods equally, but in practice, these factors were paramount.
  6. Item Base Type: Combining items of different base types was impossible. The base type (e.g., Vaal Regalia, Imperial Claw) determined the pool of mods that could roll and thus the potential "undesired" mods.

FAQ: PoE Recombinator Calculator

Q: Is this calculator 100% accurate to in-game PoE Recombinator mechanics?

A: No, this calculator uses a robust hypergeometric probability model to provide a strong estimate based on modifier counts. The actual in-game Recombinators had complex hidden modifier weights, influence interactions, and other unique mechanics that are not (and cannot be easily) factored into a generalized web calculator without constant game data updates. It serves as an excellent guide for understanding the odds of specific mod transfers.

Q: What do "Desired Mods" mean?

A: "Desired Mods" refers to the specific explicit modifiers on your input items that you wish to see transferred to the resulting recombined item. For example, a fractured tier 1 life roll or a specific attack speed modifier.

Q: Why are there no units for the input fields?

A: The input fields (Desired Mods, Total Mods, Target Output Mod Count) represent counts of modifiers, which are inherently unitless quantities. The result is a percentage, indicating probability.

Q: What is a reasonable "Target Output Mod Count"?

A: Historically, Recombinators commonly produced items with 2, 3, or 4 explicit modifiers. 3 is often a good average to use for general estimation. If you're aiming for a very specific outcome, you might run calculations for each possible output count (2, 3, 4) and consider the sum of probabilities for any of those outcomes.

Q: What if my desired mods overlap (e.g., two items both have T1 life)?

A: This calculator assumes that your "Desired Mods from Item A" and "Desired Mods from Item B" are distinct and non-overlapping. If both items have the *same* desired modifier, you should count it only once in the "Total Desired Mods" for the combined pool, but the calculator's current structure assumes distinct sets. For overlapping mods, you'd effectively have fewer *unique* desired mods.

Q: My calculated chance is very low. Is that normal?

A: Yes, very low probabilities are common with complex crafting in Path of Exile, especially when trying to transfer multiple specific modifiers. Recombinators were known for being extremely powerful but also incredibly challenging to hit specific outcomes. This calculator helps illustrate just how slim the odds can be.

Q: Can this calculator help me decide if a craft is worth it?

A: Absolutely! By providing a probability, this tool helps you quantify the risk. You can weigh the cost of the Recombinator and source items against the calculated success chance to determine if the potential reward justifies the investment. It's a key component of PoE crafting strategy.

Q: Why does the probability drop so sharply with more desired mods?

A: Probability calculations involving combinations and selections (like the hypergeometric distribution) are highly sensitive to the number of specific outcomes you require. Each additional specific "success" you demand significantly reduces the number of favorable combinations out of the total possible combinations, leading to a rapid decrease in overall probability.

Related Tools and Internal Resources

Enhance your Path of Exile crafting journey with these related guides and tools:

🔗 Related Calculators