📐 Math

Free Pokemon Weakness Calculator – Type Matchup Tool

Use this free Pokemon weakness calculator to instantly find type matchups. Enter a Pokemon or type to see strengths and resistances for battle.

⚡ Free to use 📱 Mobile friendly 🕒 Updated: June 21, 2026
🧮 Pokemon Weakness Calculator
const typeChart = { normal: { normal:1, fire:1, water:1, electric:1, grass:1, ice:1, fighting:2, poison:1, ground:1, flying:1, psychic:1, bug:1, rock:1, ghost:0, dragon:1, dark:1, steel:0.5, fairy:1 }, fire: { normal:1, fire:0.5, water:2, electric:1, grass:0.5, ice:0.5, fighting:1, poison:1, ground:2, flying:1, psychic:1, bug:0.5, rock:2, ghost:1, dragon:0.5, dark:1, steel:0.5, fairy:0.5 }, water: { normal:1, fire:0.5, water:0.5, electric:2, grass:2, ice:0.5, fighting:1, poison:1, ground:1, flying:1, psychic:1, bug:1, rock:1, ghost:1, dragon:0.5, dark:1, steel:0.5, fairy:1 }, electric: { normal:1, fire:1, water:1, electric:0.5, grass:0.5, ice:1, fighting:1, poison:1, ground:2, flying:0.5, psychic:1, bug:1, rock:1, ghost:1, dragon:0.5, dark:1, steel:0.5, fairy:1 }, grass: { normal:1, fire:2, water:0.5, electric:0.5, grass:0.5, ice:2, fighting:1, poison:2, ground:0.5, flying:2, psychic:1, bug:2, rock:1, ghost:1, dragon:0.5, dark:1, steel:0.5, fairy:1 }, ice: { normal:1, fire:2, water:0.5, electric:1, grass:1, ice:0.5, fighting:2, poison:1, ground:1, flying:1, psychic:1, bug:1, rock:2, ghost:1, dragon:1, dark:1, steel:2, fairy:1 }, fighting: { normal:1, fire:1, water:1, electric:1, grass:1, ice:1, fighting:1, poison:0.5, ground:1, flying:2, psychic:2, bug:0.5, rock:0.5, ghost:0, dragon:1, dark:0.5, steel:1, fairy:2 }, poison: { normal:1, fire:1, water:1, electric:1, grass:0.5, ice:1, fighting:0.5, poison:0.5, ground:2, flying:1, psychic:2, bug:0.5, rock:0.5, ghost:0.5, dragon:1, dark:1, steel:0, fairy:0.5 }, ground: { normal:1, fire:1, water:2, electric:0, grass:2, ice:2, fighting:1, poison:0.5, ground:1, flying:0, psychic:1, bug:0.5, rock:0.5, ghost:1, dragon:1, dark:1, steel:1, fairy:1 }, flying: { normal:1, fire:1, water:1, electric:2, grass:0.5, ice:2, fighting:0.5, poison:1, ground:0, flying:1, psychic:1, bug:0.5, rock:2, ghost:1, dragon:1, dark:1, steel:0.5, fairy:1 }, psychic: { normal:1, fire:1, water:1, electric:1, grass:1, ice:1, fighting:0.5, poison:1, ground:1, flying:1, psychic:0.5, bug:2, rock:1, ghost:2, dragon:1, dark:2, steel:0.5, fairy:1 }, bug: { normal:1, fire:2, water:1, electric:1, grass:0.5, ice:1, fighting:0.5, poison:0.5, ground:0.5, flying:2, psychic:1, bug:1, rock:2, ghost:0.5, dragon:1, dark:1, steel:0.5, fairy:0.5 }, rock: { normal:0.5, fire:0.5, water:2, electric:1, grass:2, ice:1, fighting:2, poison:0.5, ground:2, flying:0.5, psychic:1, bug:1, rock:1, ghost:1, dragon:1, dark:1, steel:2, fairy:1 }, ghost: { normal:0, fire:1, water:1, electric:1, grass:1, ice:1, fighting:0, poison:0.5, ground:1, flying:1, psychic:1, bug:0.5, rock:1, ghost:2, dragon:1, dark:2, steel:0.5, fairy:1 }, dragon: { normal:1, fire:0.5, water:0.5, electric:0.5, grass:0.5, ice:2, fighting:1, poison:1, ground:1, flying:1, psychic:1, bug:1, rock:1, ghost:1, dragon:2, dark:1, steel:0.5, fairy:2 }, dark: { normal:1, fire:1, water:1, electric:1, grass:1, ice:1, fighting:2, poison:1, ground:1, flying:1, psychic:0, bug:2, rock:1, ghost:0.5, dragon:1, dark:0.5, steel:0.5, fairy:2 }, steel: { normal:0.5, fire:2, water:0.5, electric:0.5, grass:0.5, ice:0.5, fighting:2, poison:0, ground:2, flying:0.5, psychic:0.5, bug:0.5, rock:0.5, ghost:0.5, dragon:0.5, dark:0.5, steel:0.5, fairy:0.5 }, fairy: { normal:1, fire:0.5, water:1, electric:1, grass:1, ice:1, fighting:0.5, poison:2, ground:1, flying:1, psychic:1, bug:0.5, rock:1, ghost:1, dragon:0, dark:0.5, steel:2, fairy:1 } }; const typeNames = ["normal","fire","water","electric","grass","ice","fighting","poison","ground","flying","psychic","bug","rock","ghost","dragon","dark","steel","fairy"]; const typeDisplay = {normal:"Normal",fire:"Fire",water:"Water",electric:"Electric",grass:"Grass",ice:"Ice",fighting:"Fighting",poison:"Poison",ground:"Ground",flying:"Flying",psychic:"Psychic",bug:"Bug",rock:"Rock",ghost:"Ghost",dragon:"Dragon",dark:"Dark",steel:"Steel",fairy:"Fairy"}; function calculate() { const type1 = document.getElementById("i1").value; const type2 = document.getElementById("i2").value; const results = []; let primaryLabel = ""; let primaryValue = ""; let primarySub = ""; let primaryClass = ""; for (let atkType of typeNames) { let multiplier = typeChart[atkType][type1] || 1; if (type2 !== "none") { multiplier *= typeChart[atkType][type2] || 1; } results.push({ type: atkType, multiplier: multiplier }); } results.sort((a,b) => b.multiplier - a.multiplier); const maxMult = results[0].multiplier; const minMult = results[results.length-1].multiplier; if (maxMult >= 4) { primaryLabel = "⚠️ MASSIVE WEAKNESS"; primaryValue = `${maxMult}x`; primarySub = "Quadruple+ effective!"; primaryClass = "danger"; } else if (maxMult === 2) { primaryLabel = "💔 Weakness"; primaryValue = "2x"; primarySub = "Super effective"; primaryClass = "danger"; } else if (maxMult === 1) { primaryLabel = "⚖️ Neutral"; primaryValue = "1x"; primarySub = "Standard damage"; primaryClass = "yellow"; } else if (maxMult === 0.5) { primaryLabel = "🛡️ Resistance"; primaryValue = "0.5x"; primarySub = "Not very effective"; primaryClass = "green"; } else if (maxMult === 0.25) { primaryLabel = "🛡️ Strong Resistance"; primaryValue = "0.25x"; primarySub = "Double resistance"; primaryClass = "green"; } else if (maxMult === 0) { primaryLabel = "🧱 IMMUNE"; primaryValue = "0x"; primarySub = "No effect!"; primaryClass = "green"; } const displayType1 = typeDisplay[type1]; const displayType2 = type2 !== "none" ? " / " + typeDisplay[type2] : ""; showResult(primaryValue, primaryLabel, [ {label:"Pokemon Types", value:`${displayType1}${displayType2}`, cls:"yellow"}, {label:"Strongest Attack", value:`${typeDisplay[results[0].type]}
📊 Most Common Weakness Types Across All Pokémon Generations

What is Pokemon Weakness Calculator?

A Pokemon Weakness Calculator is a specialized tool that determines the type effectiveness of offensive moves against any defending Pokemon by analyzing its dual-type combination. This free online resource instantly calculates the damage multiplier based on the complex interaction between the attacking move's type and the defender's primary and secondary types, factoring in the 18-type battle system used in the main series games. For competitive players, raid battlers, and casual gym leaders alike, this calculator eliminates the guesswork of remembering which types resist or are weak to others, providing a precise 0x, 0.25x, 0.5x, 1x, 2x, or 4x effectiveness multiplier.

Trainers of all skill levels use this tool to build better teams, plan raid counters, and maximize damage output in battles against other players or in-game opponents. Whether you are preparing for a Pokemon GO raid day, building a competitive VGC team, or simply trying to beat a tough Gym Leader, understanding type weaknesses is the single most important factor in winning battles. This tool matters because even experienced players frequently misremember type interactions—such as the fact that Bug resists Fighting or that Ghost is immune to Normal—and a single wrong move can cost you the match.

This completely free online Pokemon Weakness Calculator requires no signup, no downloads, and no personal information, delivering instant results with a clear step-by-step breakdown of how the final multiplier was calculated.

How to Use This Pokemon Weakness Calculator

Using this Pokemon Weakness Calculator is straightforward and takes only seconds. The interface is designed for both beginners who may not know every type chart interaction and for advanced players who need quick, accurate calculations during team building or battle planning.

  1. Select the Attacking Move Type: From the dropdown menu, choose the type of the move you plan to use. This includes all 18 types: Normal, Fire, Water, Electric, Grass, Ice, Fighting, Poison, Ground, Flying, Psychic, Bug, Rock, Ghost, Dragon, Dark, Steel, and Fairy. If you are unsure which move to use, you can test multiple types in sequence without resetting the form.
  2. Choose the Defender's Primary Type: Select the first type of the Pokemon you are attacking. Every Pokemon has at least one type, and this is the primary type listed first in the game. For example, Charizard is Fire/Flying, so Fire is the primary type. This selection is mandatory for the calculator to function.
  3. Choose the Defender's Secondary Type (Optional): If the defending Pokemon has a secondary type—many Pokemon do, such as Gyarados being Water/Flying—select it here. If the Pokemon is a single-type species like Hitmonlee (pure Fighting), simply leave this field blank or select "None." The calculator automatically handles the difference between single-type and dual-type defenders.
  4. Click "Calculate Weakness": Press the large calculation button to process your selections. The tool immediately cross-references the attacking type against both of the defender's types using the official game type chart, then multiplies the individual effectiveness values together to produce the final damage multiplier.
  5. Read the Results and Breakdown: The output displays the final multiplier (0x, 0.25x, 0.5x, 1x, 2x, or 4x) along with a color-coded indicator—green for super effective, red for not very effective, gray for immune. Below the result, a detailed breakdown shows the effectiveness against each individual type, so you understand exactly why the multiplier is what it is.

For best results, remember that the calculator only accounts for type interactions—it does not factor in abilities like Levitate, Volt Absorb, or Flash Fire, nor does it consider held items, weather, or Terastallization. Use it as a baseline for type matchup analysis, then layer in other mechanics manually.

Formula and Calculation Method

The Pokemon Weakness Calculator uses the standard type effectiveness multiplication system established by Game Freak and used in all main series Pokemon games, Pokemon GO, and competitive battling formats. The formula is simple in concept but powerful in practice: the final damage multiplier is the product of the attacking type's effectiveness against the defender's primary type multiplied by the attacking type's effectiveness against the defender's secondary type.

Formula
Final Multiplier = Effectiveness vs Primary Type × Effectiveness vs Secondary Type

Each individual effectiveness value is drawn from the official 18-type effectiveness chart, where values are always one of four possibilities: 0 (immune), 0.5 (not very effective), 1 (normally effective), or 2 (super effective). When a defender has only one type, the secondary type is treated as having a multiplier of 1, meaning the final result equals the effectiveness against the primary type alone.

Understanding the Variables

The two key inputs are the attacking move type and the defender's type combination. The attacking move type determines which column of the type chart is referenced. The defender's primary and secondary types determine which rows are checked. For example, if you use a Fire-type move against a Grass/Poison Pokemon like Venusaur, the calculator looks up Fire vs Grass (which is 2x) and Fire vs Poison (which is 1x), then multiplies them: 2 × 1 = 2x damage. If the defender is pure Water-type, the secondary type is ignored, and the result is simply Fire vs Water (0.5x). The calculator also handles immunity cases: if any single type matchup yields a 0 (such as Normal vs Ghost), the final result is automatically 0x regardless of the other type, because immunities override all other interactions.

Step-by-Step Calculation

The calculation process follows a strict logical sequence. First, the tool identifies the attacking type and retrieves its effectiveness value against the defender's primary type from the built-in chart. Second, it checks whether a secondary type exists; if yes, it retrieves the effectiveness value against that secondary type. Third, it multiplies the two values together. Fourth, it applies the immunity rule: if any single matchup was 0, the final result is forced to 0. Fifth, it rounds the result to the nearest standard multiplier (0, 0.25, 0.5, 1, 2, or 4). For example, if a move is 2x against the primary type and 0.5x against the secondary type, the product is 1x (2 × 0.5 = 1). If it is 2x against both, the product is 4x (2 × 2 = 4). If it is 0.5x against both, the product is 0.25x (0.5 × 0.5 = 0.25). This multiplicative system is why dual-type Pokemon can have extreme weaknesses or surprising resistances.

Example Calculation

To illustrate how the Pokemon Weakness Calculator works in practice, consider a realistic scenario faced by a trainer preparing for a competitive battle or a tough raid boss. Let us assume you are battling a Garchomp, which is a Dragon/Ground-type Pokemon, and you are deciding between using an Ice Beam or a Dragon Claw.

Example Scenario: You are facing a Garchomp (Dragon/Ground) in a Pokemon Scarlet and Violet online battle. You have a Pokemon that knows Ice Beam (Ice-type) and Dragon Claw (Dragon-type). You need to know which move will deal more damage. Use the calculator to find the type effectiveness multiplier for each move against Garchomp.

First, calculate Ice Beam against Garchomp. Select Ice as the attacking type, Dragon as the defender's primary type, and Ground as the defender's secondary type. The tool looks up Ice vs Dragon: Ice is super effective against Dragon, so the value is 2. Next, Ice vs Ground: Ice is super effective against Ground as well, so the value is also 2. Multiply them: 2 × 2 = 4. The final multiplier is 4x damage—extremely effective. Now calculate Dragon Claw against Garchomp. Select Dragon as the attacking type, Dragon as primary, Ground as secondary. Dragon vs Dragon: Dragon is not very effective against Dragon (0.5x). Dragon vs Ground: Dragon is normally effective against Ground (1x). Multiply: 0.5 × 1 = 0.5x. The final multiplier is 0.5x—not very effective.

The result in plain English: Ice Beam will deal four times the normal damage to Garchomp, while Dragon Claw will deal only half damage. This is why experienced trainers always carry Ice-type moves against Dragon/Ground Pokemon like Garchomp, despite the common assumption that Dragon moves are good against Dragon types. The calculator reveals the counterintuitive truth: Dragon resists Dragon, so Dragon Claw is actually a poor choice here.

Another Example

Consider a second scenario: you are up against a Rotom-Wash, which is Electric/Water-type. You are considering using a Grass-type move like Energy Ball versus a Ground-type move like Earthquake. Using the calculator: Grass vs Electric: Grass is normally effective (1x). Grass vs Water: Grass is super effective against Water (2x). Multiply: 1 × 2 = 2x. So Energy Ball deals double damage. Now Ground vs Electric: Ground is super effective against Electric (2x). Ground vs Water: Ground is normally effective against Water (1x). Multiply: 2 × 1 = 2x. Both moves deal 2x damage, but Earthquake also has the advantage of being a physical move that may benefit from different stats. This shows how the calculator helps you compare not just type effectiveness but also plan around your Pokemon's stats and movepool.

Benefits of Using Pokemon Weakness Calculator

Integrating a Pokemon Weakness Calculator into your battle preparation routine offers tangible advantages that go beyond simple type lookup. Whether you are a casual player or a tournament competitor, this tool streamlines decision-making and reduces costly mistakes.

  • Instant Type Chart Mastery: Memorizing the full 18-type interaction chart requires learning 324 individual matchups (18 attacking types × 18 defending types). This calculator eliminates the need for rote memorization by delivering accurate results in under a second. Even veteran players frequently forget niche interactions like Psychic being resisted by Steel or Fairy being immune to Dragon, and this tool catches those errors instantly.
  • Optimal Move Selection in Team Building: When constructing a team of six Pokemon, you need coverage moves that hit as many types as possible for super effective damage. The calculator allows you to quickly test different move types against common threats in the metagame. For example, you can check whether a Fighting-type move covers Steel, Normal, Ice, and Rock types effectively, or whether you need a separate Ground-type move for Poison and Electric coverage.
  • Raid and Gym Planning Efficiency: In Pokemon GO raids or main series game Gym battles, you often face a single defender with a known type. Using the calculator, you can pre-select the best attacking type before the battle begins, saving precious seconds during the fight. This is especially critical in timed raids where every second of damage output matters.
  • Educational Value for New Players: New trainers often struggle with the type system because it is not intuitive—for instance, Bug resists Fighting, and Ghost is weak to itself. The calculator's step-by-step breakdown teaches users why a particular multiplier was calculated, helping them learn the type chart organically through repeated use. Over time, many users find they begin to remember common interactions without needing the tool.
  • No Data Storage or Privacy Concerns: Unlike many online tools that require account creation or track user data, this calculator runs entirely in your browser with no server-side storage. Your selections are never saved, logged, or shared. This makes it safe for use in schools, workplaces, or anywhere privacy is a concern.

Tips and Tricks for Best Results

To get the most out of the Pokemon Weakness Calculator, apply these expert strategies that go beyond basic type lookup. Understanding the nuances of the type system will elevate your gameplay significantly.

Pro Tips

  • Always check both directions: Use the calculator to see what moves hit your own Pokemon super effectively as well. If you are building a defensive team, knowing that your Steel/Fairy-type Pokemon is 4x weak to Fire and Ground helps you plan switch-ins and coverage moves.
  • Test coverage against common defensive cores: In competitive formats, certain type combinations appear frequently, such as Steel/Fairy (e.g., Mawile, Togekiss) or Water/Ground (e.g., Swampert, Gastrodon). Run these combinations through the calculator to find which attacking types hit them for at least 2x damage.
  • Remember that abilities override type chart: The calculator shows pure type interactions, but abilities like Levitate (immunity to Ground), Flash Fire (immunity to Fire), and Water Absorb (immunity to Water) can change results. Always consider the defender's ability after using the calculator.
  • Use the calculator for Tera Raid planning: In Pokemon Scarlet and Violet, Tera Raid bosses have a Tera type that may differ from their original types. Use the calculator twice—once for the original types and once for the Tera type—to understand which moves work best before and after the boss Terastallizes.

Common Mistakes to Avoid

  • Forgetting that dual-type immunities override everything: If a move is immune (0x) against either of the defender's types, the final result is always 0x, even if the other type is weak. For example, a Normal-type move against a Ghost/Grass Pokemon like Gourgeist is 0x because Normal is immune to Ghost, regardless of Grass being neutral. Do not assume a secondary weakness will save you.
  • Misidentifying primary vs secondary type order: The order of types matters for abilities like Protean or Libero, but for the type chart, the order does not change the multiplication. However, some players mistakenly think the first type is more important. The calculator treats both types equally—the product is the same regardless of which is primary or secondary.
  • Assuming all 2x multipliers are equal: A 2x multiplier from a move that is super effective against only one type is identical in damage to a 2x multiplier from a move that is super effective against both types but then halved by a resistance. However, the latter scenario (2x × 0.5x = 1x) does not produce 2x—it produces 1x. Always check the full breakdown to see if your 2x result comes from a true double weakness or a single weakness with a neutral secondary.

Conclusion

The Pokemon Weakness Calculator is an indispensable free tool for any trainer who wants to optimize their battle performance, whether in casual play, competitive tournaments, or raid content. By instantly calculating the exact damage multiplier based on the official type chart, it removes guesswork and memorization barriers, allowing you to focus on strategy, positioning, and prediction. The step-by-step breakdown not only gives you the answer but teaches you the underlying mechanics of the type system, making you a better player over time.

Stop second-guessing your move choices and start winning more battles today. Use this free Pokemon Weakness Calculator before your next battle to ensure every move you select deals maximum possible damage. No signup, no ads, no distractions—just accurate type matchup analysis in seconds. Bookmark the tool and share it with your fellow trainers to give everyone the competitive edge they deserve.

Frequently Asked Questions

The Pokemon Weakness Calculator is a tool that computes the exact type effectiveness multiplier for any given attacking type against a defending Pokemon's up to two types. It measures the combined resistance or weakness by multiplying the individual type chart values (0x, 0.25x, 0.5x, 1x, 2x, or 4x). For example, if you use a Fighting-type move against a Rock/Steel Pokemon like Aggron, the calculator will return a 4x weakness (2x from Rock x 2x from Steel). It also displays immunities, such as a Normal-type move dealing 0x damage against a Ghost-type.

The calculator uses the formula: Final Multiplier = Type1_Multiplier × Type2_Multiplier, where each multiplier comes from the standard 18-type matchup chart (e.g., Water vs Fire = 2, Fire vs Water = 0.5). For a single-type Pokemon, only one multiplier is applied. For dual types, the two values are multiplied together, yielding results like 0.25x (double resistance, e.g., Water/Grass vs Water), 1x (neutral), or 4x (double weakness, e.g., Ice/Ground vs Fire). The calculator also factors in the "same-type attack bonus" (STAB) separately, as STAB is not part of type effectiveness.

The calculator outputs multipliers between 0 and 4: 0x (immune), 0.25x (double resistance), 0.5x (single resistance), 1x (neutral), 2x (super effective weakness), and 4x (double weakness). A "normal" value for most matchups is 1x, meaning no advantage or disadvantage. A "healthy" defensive value is 0.5x or lower, indicating the Pokemon resists the attack, while a "good" offensive value is 2x or higher, maximizing damage output. For competitive play, a 4x weakness is considered a critical vulnerability, often requiring team coverage to mitigate.

The calculator is 100% accurate for determining type effectiveness multipliers, as it directly mirrors the official Game Freak type chart used in all main-series games since Generation VI (after the Fairy type was introduced). However, it does not account for abilities (e.g., Levitate granting Ground immunity), held items (e.g., Air Balloon), or terrain effects (e.g., Electric Terrain boosting Electric moves). For raw type matchup accuracy, it matches the in-game data exactly, but for full damage prediction, you must manually factor in those additional modifiers.

The calculator only evaluates type effectiveness and ignores numerous game mechanics: it does not consider abilities like Flash Fire (Fire immunity), Thick Fat (halving Fire/Ice damage), or Wonder Guard (only weak to super effective moves). It also excludes held items such as the Focus Sash, type-changing effects like Soak or Trick-or-Treat, and dynamic field conditions like Grassy Terrain or weather. Finally, it does not calculate actual damage numbers, as it omits base power, Attack/Defense stats, level, and STAB—so a 4x weakness does not guarantee a one-hit KO.

This calculator is a subset of professional tools: it focuses exclusively on type effectiveness, while Smogon's damage calculator computes full damage ranges including EVs, IVs, nature, and item effects. For example, a professional tool will tell you that a Life Orb Garchomp's Earthquake deals 85-101% to a standard Toxapex, whereas this calculator only says "Ground is super effective (2x) against Poison." It is ideal for quick team-building checks but lacks the depth for precise competitive battle simulations or damage rolls.

No, this is a frequent misunderstanding—the Pokemon Weakness Calculator strictly outputs type effectiveness multipliers (0x to 4x) and does not include STAB, which is a separate 1.5x multiplier applied only when the move's type matches one of the attacker's types. For instance, a Water-type Pokemon using a Water move against a Fire-type will show 2x weakness, but the actual damage is further multiplied by 1.5x STAB, resulting in an effective 3x damage. The calculator's values are raw type chart numbers, not final damage modifiers.

A common real-world use is identifying coverage gaps: after selecting a core Pokemon like Garchomp (Dragon/Ground), you can use the calculator to see that it is 4x weak to Ice. You then check which teammates resist Ice (e.g., a Steel-type like Heatran, which resists Ice 0.5x) or can hit Ice-types super effectively (e.g., a Fighting-type move). This ensures your team has no unrecoverable 4x weaknesses. Another use is optimizing move sets—for example, confirming that a single Ice Beam covers both Dragon and Flying types with 4x and 2x effectiveness respectively.

Last updated: June 21, 2026 · Bookmark this page for quick access

🔗 You May Also Like

Pokemon Catch Rate Calculator
Calculate your exact Pokemon catch rate for any species, ball, and status condit
Math
Pokemon Go Purify Calculator
Free Pokemon Go Purify Calculator to instantly check CP gains and Stardust costs
Math
Pokemon Damage Calculator
Quickly calculate Pokemon battle damage with our free calculator. Enter moves, t
Math
Pokemon Iv Calculator
Use our free Pokemon IV calculator to instantly check your Pokémon’s hidden stat
Math
Sterling Silver Price Calculator
Free sterling silver price calculator to instantly estimate scrap value. Enter w
Math
Dnd Stat Calculator
Free DnD stat calculator to roll and assign ability scores for your character. G
Math
Uk Shoe Size Calculator
Free UK shoe size calculator to convert EU, US, and CM lengths instantly. Enter
Math
Pokemon Happiness Calculator
Free Pokemon happiness calculator to check your Pokemon's friendship level insta
Math
Psa Density Calculator
Free PSA density calculator to assess prostate cancer risk accurately. Enter PSA
Math
Uk Settlement Calculator
Free UK Settlement Calculator to check your ILR eligibility instantly. Enter you
Math
Elden Ring Rune Calculator
Free Elden Ring rune calculator to plan your leveling path instantly. Enter your
Math
Mini Calculator
Free mini calculator for quick and easy arithmetic. Perform addition, subtractio
Math
Solar Panel Payback Calculator Worldwide
Free solar panel payback calculator to estimate your system's break-even time wo
Math
Banfield Anesthesia Calculator
Free Banfield Anesthesia Calculator for accurate small animal drug dosing. Simpl
Math
Mobile Home Moving Cost Calculator
Free mobile home moving cost calculator to estimate hauling expenses instantly.
Math
Tf2 Calculator
Free TF2 calculator to instantly convert in-game currencies and track your item
Math
Laminate Flooring Calculator
Free laminate flooring calculator to estimate total materials, cost, waste, and
Math
Poland Pit Calculator English
Free Poland Pit calculator to compute pit depth and volume instantly. Enter your
Math
Umich Gpa Calculator
Free UMich GPA calculator to instantly compute your cumulative GPA. Enter grades
Math
Partial Fraction Calculator
Free partial fraction decomposition calculator. Break complex rational expressio
Math
Minecraft Luck Of Sea Calculator
Free Minecraft Luck of the Sea calculator to find your exact fishing loot odds.
Math
Belgium Btw Calculator English
Free Belgium VAT calculator in English to quickly add or remove VAT. Enter any a
Math
Boobies Calculator
Free boobies calculator to estimate bra size and cup volume instantly. Enter bus
Math
Ap French Score Calculator
Free AP French score calculator to estimate your final exam result instantly. En
Math
Gcs Calculator
Free GCS Calculator quickly assesses eye, verbal, and motor responses. Get an ac
Math
Ratio Test Calculator
Free Ratio Test Calculator for series convergence. Instantly determine if your i
Math
Drip Rate Calculator
Free online Drip Rate Calculator. Easily calculate IV fluid infusion drip rates
Math
Ap Environmental Science Score Calculator
Free AP Environmental Science score calculator to predict your final exam grade
Math
Surface Area Of A Triangular Prism Calculator
Free calculator finds the total surface area of a triangular prism. Enter base,
Math
Surface Area Of A Triangular Pyramid Calculator
Free calculator finds the surface area of a triangular pyramid. Get fast, accura
Math
Portugal Minimum Wage Calculator
Free Portugal minimum wage calculator for 2026. Instantly compute monthly, daily
Math
Hardie Siding Calculator
Free Hardie siding calculator to estimate panels and trim for your project. Ente
Math
Birdsmouth Cut Calculator
Free birdsmouth cut calculator to instantly find rafter seat and plumb cuts. Ent
Math
Ap Art History Score Calculator
Calculate your AP Art History score for free. Enter your multiple-choice and fre
Math
Absolute Value Equations Calculator
Free absolute value equations calculator to solve problems like |x+3|=7 instantl
Math
Octagon Calculator
Free online octagon calculator. Quickly compute area, side length, perimeter, an
Math
Capital Gains Crypto Calculator
Free capital gains crypto calculator to instantly compute your tax liability. En
Math
Turnover Rate Calculator
Free turnover rate calculator to measure employee retention instantly. Enter hir
Math
Minecraft Fall Damage Calculator
Free Minecraft fall damage calculator to instantly determine damage from any hei
Math
Factor Trinomials Calculator
Free Factor Trinomials Calculator instantly solves quadratic expressions with de
Math
Wallpaper Calculator With Repeat
Free wallpaper calculator with pattern repeat to estimate rolls needed for any r
Math
Silca Tire Pressure Calculator
Free Silca Tire Pressure Calculator to find your optimal psi instantly. Enter ri
Math
Vbac Success Calculator
Free VBAC success calculator to estimate your chance of vaginal birth after cesa
Math
F(G(X)) Calculator
Free F(G(X)) calculator for composite functions. Easily compute f(g(x)) step-by-
Math
Genshin Pity Calculator
Free Genshin Impact pity calculator to track your 5-star and 4-star guarantees.
Math
Gdp Calculator
Calculate GDP easily with this free online tool. Perfect for economics students
Math
Wellington Cost Of Living Calculator
Free Wellington cost of living calculator to compare your expenses instantly. En
Math
Gamma Function Calculator
Use our free Gamma Function Calculator to compute Γ(x) for real and complex numb
Math
Area Of A Sector Calculator
Free area of a sector calculator to compute sector area instantly. Enter radius
Math
Calc Bc Calculator
Free Calc BC calculator to solve AP Calculus BC problems instantly. Get step-by-
Math
Italy Partita Iva Calculator
Free Italy Partita Iva Calculator to validate VAT numbers instantly. Enter any I
Math
Genshin Impact Weapon Level Calculator
Free Genshin Impact weapon level calculator to instantly see upgrade costs and m
Math
Recessed Lighting Spacing Calculator
Free recessed lighting spacing calculator to determine optimal placement. Enter
Math
Smp Calculator Uk
Calculate your surface mount potential for free with this SMP Calculator UK tool
Math
Portugal Cost Of Living Calculator
Free Portugal cost of living calculator to estimate your monthly expenses. Compa
Math
Italy Unemployment Benefit Calculator
Free Italy unemployment benefit calculator to estimate your NASpI amount. Enter
Math
Minecraft Elytra Flight Calculator
Free Minecraft Elytra flight calculator to estimate glide distance and speed. En
Math
Uky Gpa Calculator
Free Uky GPA calculator to compute your grade point average instantly. Enter cou
Math
Litres To Pints Uk
Free online litres to pints UK calculator for instant volume conversions. Enter
Math
Ap Bio Exam Calculator
Free AP Biology score calculator. Predict your final AP exam grade instantly bas
Math
Minecraft Stack Calculator
Free Minecraft Stack Calculator instantly converts items to stacks, shulker boxe
Math
Ti-30Xiis Calculator
Free Ti-30Xiis calculator guide covering all functions and operations. Master fr
Math
Limestone Calculator
Free limestone calculator to estimate weight and volume for your project. Enter
Math
Gpa Calculator Uark
Free Uark GPA calculator to compute your University of Arkansas semester and cum
Math
Ap Research Score Calculator
Free AP Research score calculator to estimate your final exam score instantly. I
Math
Spanish Autonomo Calculator
Free Spanish autonomo calculator to estimate your monthly social security & tax
Math
Genshin Impact Character Level Calculator
Free Genshin Impact calculator to instantly plan your character's level-up mater
Math
Osaka Cost Of Living Calculator
Free Osaka cost of living calculator to estimate your monthly expenses in Japan.
Math
Taper Calculator
Free Taper Calculator to instantly find taper angle, ratio, and length for pipes
Math
Apes Calculator
Use our free Apes Calculator to simplify complex math problems instantly. Get ac
Math
Liquidity Pool Calculator
Free liquidity pool calculator to estimate your potential returns. Enter token a
Math
Uk Apprenticeship Wage Calculator
Free UK Apprenticeship Wage Calculator to instantly compute your minimum pay. En
Math
Pocket Calculator
Free pocket calculator for quick math operations. Add, subtract, multiply, and d
Math
Minecraft Tnt Calculator
Free Minecraft TNT calculator to instantly compute blast radius, block damage, a
Math
Genshin Impact Team Dps Calculator
Free Genshin Impact team DPS calculator to compare party damage instantly. Input
Math
Remainder Theorem Calculator
Free Remainder Theorem Calculator. Quickly find the remainder of any polynomial
Math
Ap Computer Science A Score Calculator
Free AP Computer Science A score calculator to predict your 2026 exam result. En
Math
Bangalore Cost Of Living Calculator
Free Bangalore cost of living calculator to estimate your monthly expenses insta
Math
Cos Inverse Calculator
Free Cos Inverse Calculator to compute arccos values instantly. Enter any cosine
Math
Null Space Calculator
Free Null Space Calculator to find the null space of any matrix instantly. Enter
Math
Ap Human Geography Calculator
Free AP Human Geography calculator to estimate your final exam score and AP grad
Math
Cata Talent Calculator
Free Cata talent calculator to plan and optimize your Cataclysm spec. Enter tale
Math
Osmolar Gap Calculator
Free Osmolar Gap Calculator to quickly compute serum osmolality and gap. Enter s
Math
Calculator Icon
Free calculator icon for quick math. Solve addition, subtraction, multiplication
Math
German Grunderwerbsteuer Calculator
Free German Grunderwerbsteuer calculator to instantly estimate property transfer
Math
Gcse Points Calculator
Free GCSE points calculator to instantly convert grades to points. Enter your su
Math
Mixed Air Calculator
Calculate the mixed air temperature of two airstreams instantly with this free o
Math
Terminus Calculator
Free Terminus Calculator for quick math solutions. Solve equations and get insta
Math
Foreign Earned Income Exclusion Calculator
Calculate your FEIE for 2026 free with this easy-to-use tool. Enter foreign inco
Math
Fortnite Bloom Calculator
Free Fortnite bloom calculator to reduce weapon spread and improve your aim. Ent
Math
Extrema Calculator
Free online Extrema Calculator finds local & global minima and maxima. Get criti
Math
Hardwood Floor Refinishing Cost Calculator
Calculate your hardwood floor refinishing cost instantly with our free tool. Get
Math
Foc Calculator
Free FOC calculator for arrows. Instantly calculate front of center balance to i
Math
Simplify Radicals Calculator
Free online Simplify Radicals Calculator. Instantly reduce square roots, cube ro
Math
Shared Ownership Calculator Uk
Free Shared Ownership Calculator UK to estimate your monthly rent, mortgage, and
Math
Singapore Cost Of Living Calculator
Free Singapore cost of living calculator to estimate monthly expenses instantly.
Math
Rectangular To Polar Calculator
Free rectangular to polar calculator to convert coordinates instantly. Enter x a
Math
Sweden Skatt Calculator English
Calculate your Swedish income tax for free with this English calculator. Enter i
Math
Handheld Calculator
Free handheld calculator for quick arithmetic, percentages, and square roots. Pe
Math
Ssp Calculator Uk
Free SSP calculator for UK employers and employees. Quickly calculate Statutory
Math