Simplify Your Workflow: Search MiniWebtool.
Add Extension
Home Page > Math > Advanced Math Operations > Karnaugh Map (K-Map) Solver

Karnaugh Map (K-Map) Solver

Minimize Boolean logic functions using Karnaugh maps. Enter minterms, maxterms, or toggle a truth table — get the simplified Sum-of-Products (SOP) or Product-of-Sums (POS) expression with color-coded grouping visualization, prime implicants, essential prime implicants, and step-by-step Quine-McCluskey solution.

Karnaugh Map (K-Map) Solver
Variables: A, B, C, D
Comma or space separated. Indices range 0 to 2^n-1.
Indices whose output value does not matter.
Indices where the function equals 0.
Same field as minterm mode. Appears in one panel at a time.
Tip: click 0 to cycle to 1, click 1 to set X (don't-care), click X to reset to 0.
SOP groups 1-cells; POS groups 0-cells.

Embed Karnaugh Map (K-Map) Solver Widget

About Karnaugh Map (K-Map) Solver

The Karnaugh Map (K-Map) Solver minimizes any Boolean logic function of 2 to 5 variables and visualizes the simplification as a classic K-map with color-coded groupings. Enter your minterms, maxterms, or use the interactive truth table — the solver runs the Quine-McCluskey algorithm under the hood, finds every prime implicant, marks the essential ones, and produces the minimal Sum-of-Products (SOP) or Product-of-Sums (POS) expression with a step-by-step explanation. Click any prime implicant chip to pulse-glow the cells it covers and see how the grouping simplifies logic.

What is a Karnaugh Map?

A Karnaugh map (invented by Maurice Karnaugh in 1953) is a graphical representation of a truth table, laid out so that cells which differ by only one input variable are physically adjacent. The key trick is Gray-code ordering of rows and columns: consecutive labels like 00, 01, 11, 10 differ by exactly one bit. This adjacency lets you visually spot groups of 1s (or 0s) that can be combined into a single simplified term.

For n input variables, the K-map has 2^n cells. A 4-variable K-map is a 4×4 grid of 16 cells; a 5-variable map is drawn as two adjacent 4×4 grids.

SOP vs POS: Which Form to Choose

Sum of Products (SOP)

SOP groups the 1-cells. Each group becomes a product (AND) of literals, and all groups are OR'd together. Example: AB'C + BD. SOP is usually the default because it maps directly to AND–OR gate networks.

F = (group 1) + (group 2) + ...  |  each group is a product like AB'C

Product of Sums (POS)

POS groups the 0-cells. Each group becomes a sum (OR) of the complemented literals, and all sums are AND'd together. Example: (A + B')(C + D'). POS is often smaller when the function has more 1s than 0s.

F = (group 1) · (group 2) · ...  |  each group is a sum like (A + B' + C)

The tool computes both forms independently — toggle the output mode to compare literal counts and pick whichever is simpler for your implementation.

Grouping Rules for Karnaugh Maps

  • Power-of-two groups only: groups must contain 1, 2, 4, 8, or 16 cells. A group of 3 or 5 is not allowed.
  • Rectangular shape: cells in a group form a rectangle (horizontally, vertically, or wrapping around edges).
  • Wrap-around adjacency: the top row is adjacent to the bottom row; the leftmost column is adjacent to the rightmost. This is why gray-code ordering matters.
  • Largest groups first: bigger groups eliminate more variables, producing shorter product terms. An 8-cell group drops 3 variables; a 4-cell group drops 2; a 2-cell group drops 1.
  • Every 1 must be covered: at least one group must cover each 1-cell (for SOP) or 0-cell (for POS).
  • Overlapping is allowed: the same 1 can be covered by multiple groups if that leads to larger groups.
  • Don't-cares are flexible: they may be grouped if doing so produces larger groups, but they don't have to be covered.

Prime Implicants and Essential Prime Implicants

A prime implicant is a group that cannot be expanded further — enlarging it would include a 0-cell (for SOP). The solver lists every prime implicant it finds. Then it picks a minimal cover: the smallest set of prime implicants that covers every required minterm.

An essential prime implicant is marked ESSENTIAL when it is the only prime implicant covering at least one specific minterm. Every minimal expression must include all essential prime implicants. After selecting them, the remaining uncovered minterms are covered by the cheapest additional prime implicants.

Don't-Care Conditions

A don't-care (shown as X on the K-map) is an input combination whose output is irrelevant — either it never occurs in the real circuit or its value does not matter. The algorithm is free to treat each X as either 0 or 1, choosing whichever yields a simpler expression. In practice, don't-cares often reduce literal count by 30–60%. A common real-world source: decimal digit decoders that only use 10 of the 16 four-bit input combinations, leaving combinations 10–15 as don't-cares.

The Quine-McCluskey Algorithm

The K-map is a visual method, but for more than 4–5 variables it becomes impractical. The Quine-McCluskey (QM) algorithm is the tabular equivalent — mathematically rigorous and scalable. This solver uses QM internally:

  1. List minterms in binary, group them by number of 1-bits.
  2. Combine pairs from adjacent groups (differing in one bit), replacing the differing bit with a dash. Example: 0011 + 01110-11.
  3. Repeat until no further combinations are possible. Terms that cannot be combined are prime implicants.
  4. Build a prime implicant chart — rows are primes, columns are required minterms. Identify essential primes (columns with a single check mark).
  5. Petrick's method / exhaustive search: for the remaining uncovered minterms, find the smallest set of additional primes that covers them.

How to Use This Calculator

  1. Select the number of variables: 2, 3, 4, or 5. The K-map grid adapts automatically.
  2. Choose an input method:
    • Minterms: enter indices where F = 1 (e.g. 1, 3, 5, 7) and any don't-cares.
    • Maxterms: enter indices where F = 0. The solver computes the rest as 1s automatically.
    • Truth Table: click each row to cycle output between 0, 1, and X. Perfect for hand-designed logic.
  3. Pick SOP or POS output. Compare both forms by toggling — one is often shorter than the other.
  4. Click Solve. The K-map appears with every prime implicant in a distinct color. Click any chip to pulse-glow the cells it covers.
  5. Inspect the steps: the Quine-McCluskey breakdown shows how every prime implicant was derived and which are essential.

Worked Example: 4-Variable Function with Don't-Cares

Consider F(A,B,C,D) = Σm(1, 3, 7, 11, 15) + d(0, 2, 5).

Without don't-cares, the minimal SOP would need several terms. Treating {0, 2} as 1s lets the solver build the 4-cell group A'B' (covering 0, 1, 2, 3). Treating 5 as a 1 lets it extend CD coverage. The resulting simplification is:

F = A'B' + CD

Just 4 literals — down from 10+ without the don't-care trick. You can load this exact example with the "4-var with Don't-Cares" quick example above.

Why Minimize Boolean Functions?

  • Fewer gates = lower hardware cost, smaller chip area, lower power consumption.
  • Faster circuits: fewer gate delays on the critical path.
  • Cleaner documentation: a concise expression is easier to verify and maintain.
  • Foundation of digital design: every FPGA synthesis tool runs a descendant of Quine-McCluskey (Espresso-II, and later).

Limitations and When to Use Other Tools

  • 5+ variables: K-maps become visually cluttered. This tool supports up to 5 by splitting into two 4×4 maps. Beyond that, rely on the Quine-McCluskey steps or use synthesis tools like ABC / Espresso.
  • Hazards and glitches: a minimal cover may contain static hazards. For hazard-free design, include redundant prime implicants — this tool marks them but does not auto-add hazard covers.
  • Multi-output minimization: if several functions share variables, joint minimization (sharing gates) yields smaller hardware. This tool minimizes one function at a time.

Frequently Asked Questions

What is a Karnaugh map?

A Karnaugh map (K-map) is a visual method for minimizing Boolean expressions. Cells are arranged so that adjacent cells differ by only one variable (Gray code ordering). Grouping 1s into rectangles of size 1, 2, 4, 8, or 16 reveals the minimal Sum-of-Products expression.

What is the difference between SOP and POS?

SOP (Sum of Products) groups the 1-cells and ORs their product terms together, e.g. A'B + CD. POS (Product of Sums) groups the 0-cells and ANDs their sum terms together, e.g. (A + B')(C' + D). Both describe the same function but one form is usually more compact.

What are don't-cares and why use them?

Don't-care terms (marked X) are input combinations whose output value is irrelevant — they never occur or their value does not matter. The solver may treat them as either 0 or 1, whichever yields a simpler expression. Don't-cares often dramatically reduce the literal count.

What is a prime implicant?

A prime implicant is the largest possible group of adjacent 1-cells (power-of-two size) that cannot be expanded further. An essential prime implicant is one that uniquely covers at least one minterm and must be included in every minimal expression.

How does the Quine-McCluskey algorithm work?

Quine-McCluskey is the tabular equivalent of a K-map, suitable for many variables. It lists all minterms in binary, groups them by the number of 1s, and iteratively combines pairs that differ in exactly one bit. Terms that cannot be combined further are prime implicants. A prime implicant chart then selects the minimum cover.

How many variables does this K-map solver support?

This tool supports 2 to 5 variables. A 5-variable K-map is displayed as two adjacent 4×4 maps (one for A=0, one for A=1). Beyond 5 variables K-maps become impractical; use the Quine-McCluskey steps for larger functions.

Further Reading

Reference this content, page, or tool as:

"Karnaugh Map (K-Map) Solver" at https://MiniWebtool.com/karnaugh-map-k-map-solver/ from MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: Apr 20, 2026

You can also try our AI Math Solver GPT to solve your math problems through natural language question and answer.

Related MiniWebtools:

Advanced Math Operations:

Top & Updated:

Random PickerRandom Name PickerInstagram User ID LookupFPS ConverterLine CounterSort NumbersBatting Average CalculatorMAC Address GeneratorRelative Standard Deviation CalculatorERA CalculatorRemove SpacesFeet and Inches to Cm ConverterFacebook User ID LookupWord to Phone Number ConverterMAC Address LookupRandom Truth or Dare GeneratorSun, Moon & Rising Sign Calculator 🌞🌙✨Image ResizerSum CalculatorJob FinderSquare Root (√) CalculatorPercent Off CalculatorSHA256 Hash GeneratorMP3 LooperVertical Jump CalculatorRandom Credit Card GeneratorSlope and Grade CalculatorBitwise CalculatorAudio SplitterOPS CalculatorNumber of Digits CalculatorAI Text HumanizerRoman Numerals ConverterSaturn Return CalculatorRandom Quote GeneratorLog Base 10 CalculatorInvisible Text GeneratorCm to Feet and Inches ConverterRandom Activity GeneratorSlugging Percentage CalculatorRandom IMEI GeneratorRandom Movie PickerPhone Number ExtractorMerge VideosRandom Loadout GeneratorSalary Conversion Calculator⬛ Aspect Ratio CalculatorText FormatterRandom Superpower GeneratorRandom Fake Address GeneratorRandom Poker Hand GeneratorCM to Inches ConverterCaffeine Overdose CalculatorLove Compatibility CalculatorMaster Number CalculatorRandom Meal GeneratorOn Base Percentage CalculatorNumber to Word ConverterFile Size ConverterWord Ladder GeneratorWHIP CalculatorOctal CalculatorCompound Growth CalculatorFirst n Digits of PiVideo to Image ExtractorRandom Writing Prompt GeneratorBinary to Gray Code ConverterDecimal to BCD ConverterYouTube Channel StatisticsConnect the Dots GeneratorPER CalculatorCompare Two StringsSteel Weight CalculatorStair CalculatorTime Duration CalculatorSocial Media Username CheckerWAR CalculatorPercent Growth Rate Calculator📷 OCR / Image to TextBingo Card GeneratorRandom Birthday GeneratorLeap Years ListClothing Size ConverterGrade CalculatorProportion CalculatorQuotient and Remainder CalculatorBCD to Decimal ConverterGray Code to Binary ConverterSHA512 Hash GeneratorRemove Line Breaks🔍 Plagiarism CheckerArc Length CalculatorDay of the Year Calculator - What Day of the Year Is It Today?📅 Date CalculatorRandom Object GeneratorDMS to Decimal Degrees ConverterOutlier CalculatorMartingale Strategy CalculatorBattery Life CalculatorImage SplitterIP Subnet CalculatorBinary to BCD ConverterWhat is my Lucky Number?Long Division CalculatorRandom Chord GeneratorAdd Text to ImageAdd Prefix and Suffix to TextList of Prime Numbers🖱️ Click CounterVideo CompressorRemove AccentURL ExtractorCone Flat Pattern (Template) GeneratorSmall Text Generator ⁽ᶜᵒᵖʸ ⁿ ᵖᵃˢᵗᵉ⁾Boiling Point CalculatorTrigonometric Equation SolverAcreage CalculatorAstrological Element Balance CalculatorPerfect Number CheckerRandom Chess Opening GeneratorWhat is my Zodiac Sign?AI ParaphraserMorse Code GeneratorVideo SplitterAI Punctuation AdderModulo CalculatorLottery Number GeneratorIP Address to Hex ConverterImage CompressorSquare Numbers ListRandom Sound Frequency GeneratorTaco Bar CalculatorPVIF CalculatorDay of Year CalendarSum of Positive Integers CalculatorRemove Leading Trailing SpacesAngel Number CalculatorCryptogram GeneratorBroken Link CheckerList RandomizerName Number CalculatorAI Language DetectorRandom Time GeneratorRandom Tournament Bracket GeneratorRandom Number PickerBreak Line by Characters🎰 Gacha Pity CalculatorYouTube Tag ExtractorHappy Number CalculatorNonogram Generator (Picross)Number ExtractorLbs to Kg ConverterRandom Emoji GeneratorAdjust Video SpeedBcrypt Hash Generator / CheckerBonus CalculatorEmail ExtractorWeight Loss CalculatorMandelbrot Set ExplorerWord Scramble GeneratorConvolution CalculatorMolarity CalculatorBirth Day of the Week CalculatorMercury Retrograde CalendarYouTube Comment PickerMAC Address AnalyzerRandom Line PickerRatio CalculatorFlip VideoPVIFA Calculator🔊 Tone GeneratorHypotenuse CalculatorAPI TesterDice Roll Probability CalculatorExponential Decay CalculatorBCD to Binary ConverterIs it a Prime Number?Miter Angle CalculatorMultiple Fraction CalculatorInvisible Character RemoverHex to BCD ConverterNumber Pattern FinderRandom Playing Card GeneratorVideo CropperHelium Balloon Lift CalculatorRounding CalculatorYouTube Earnings EstimatorRoof Pitch CalculatorHEX CalculatorMaze GeneratorCoin FlipperHeight Percentile Calculatorkg to lbs ConverterDecibel (dB) CalculatorPipe Flow CalculatorPercentile CalculatorCube Numbers ListText to Speech ReaderSort Lines AlphabeticallyBCD to Hex ConverterMedian CalculatorStandard Error CalculatorAverage CalculatorReverse VideoRemove Audio from VideoActual Cash Value CalculatorScientific Notation to Decimal ConverterLog Base 2 CalculatorRoot Mean Square CalculatorSHA3-256 Hash GeneratorAI Sentence ExpanderHex to Decimal ConverterRandom Group GeneratorRandom String GeneratorAmortization CalculatorMarkup CalculatorDecimal to Hex ConverterInstagram Font GeneratorSocial Media Image Size GuideTikTok Money CalculatorTwitter/X Character CounterTwitter/X Timestamp ConverterYouTube Watch Time CalculatorTwitch Earnings CalculatorYouTube Shorts Monetization CalculatorFacebook Ad Cost CalculatorSocial Media ROI CalculatorSocial Media Post Time OptimizerCTR CalculatorROAS CalculatorInfluencer ROI CalculatorForce CalculatorAcceleration CalculatorVelocity CalculatorMomentum CalculatorProjectile Motion CalculatorKinetic Energy CalculatorPotential Energy CalculatorWork and Power CalculatorDensity CalculatorPressure CalculatorIdeal Gas Law CalculatorFree Fall CalculatorTorque CalculatorHorsepower CalculatorDilution CalculatorChemical Equation BalancerStoichiometry CalculatorPercent Yield CalculatorEmpirical Formula CalculatorTitration CalculatorMole/Gram/Particle ConverterIrregular Polygon Area CalculatorFrustum CalculatorTorus Calculator3D Distance CalculatorGreat Circle Distance CalculatorCircumscribed Circle (Circumcircle) CalculatorInscribed Circle (Incircle) CalculatorAngle Bisector CalculatorTangent Line to Circle CalculatorHeron's Formula CalculatorCoordinate Geometry Distance CalculatorVolume of Revolution CalculatorSurface of Revolution CalculatorParametric Curve GrapherRiemann Sum CalculatorTrapezoidal Rule CalculatorSimpson's Rule CalculatorImproper Integral CalculatorL'Hôpital's Rule CalculatorMaclaurin Series CalculatorPower Series CalculatorSeries Convergence Test CalculatorInfinite Series Sum CalculatorAverage Rate of Change CalculatorInstantaneous Rate of Change CalculatorRelated Rates SolverOptimization Calculator (Calculus)Gradient Calculator (Multivariable)Divergence CalculatorCurl CalculatorLine Integral CalculatorSurface Integral CalculatorJacobian Matrix CalculatorNewton's Method CalculatorRREF Calculator (Row Echelon Form)Matrix Inverse CalculatorMatrix Multiplication CalculatorDot Product CalculatorCross Product CalculatorVector Magnitude CalculatorUnit Vector CalculatorAngle Between Vectors CalculatorNull Space CalculatorColumn Space CalculatorCramer's Rule CalculatorMatrix Diagonalization CalculatorQR Decomposition CalculatorCholesky Decomposition CalculatorMatrix Power CalculatorCharacteristic Polynomial CalculatorBayes' Theorem CalculatorF-Test / F-Distribution CalculatorHypergeometric Distribution CalculatorNegative Binomial Distribution CalculatorGeometric Distribution CalculatorExponential Distribution CalculatorWeibull Distribution CalculatorBeta Distribution CalculatorSpearman Rank Correlation CalculatorFisher's Exact Test CalculatorContingency Table CalculatorOdds Ratio CalculatorTip Splitter (Advanced)Lease vs Buy CalculatorHourly Rate Calculator (Freelancer)Invoice Late Fee CalculatorESPP CalculatorStock Split CalculatorOptions Probability CalculatorDollar to Gold ConverterBeam Load CalculatorBolt Torque CalculatorGravel, Sand & Topsoil CalculatorRandom Sentence GeneratorRandom Paragraph GeneratorRandom Math Problem GeneratorRandom Bible Verse GeneratorRandom Cat/Dog Name GeneratorRandom Debate Topic GeneratorBody Recomposition CalculatorAlcohol Calorie CalculatorMedication Dosage CalculatorPace to Calories CalculatorHydration CalculatorTrain Meeting Problem SolverAge Word Problem SolverMixture Problem SolverWork Rate Problem SolverDistance-Speed-Time Triangle CalculatorCoin Word Problem SolverNumber Bonds GeneratorCarry and Borrow VisualizerTimes Tables QuizMental Math TrainerRoman Numeral Math SolverEgyptian Multiplication CalculatorVedic Math Tricks CalculatorRussian Peasant MultiplicationSoroban Abacus SimulatorAnnuity Payout CalculatorReverse Mortgage CalculatorVariable Annuity CalculatorFixed Indexed Annuity CalculatorBond Convexity CalculatorBond Duration Calculator (Macaulay & Modified)Forward Rate CalculatorMortgage Recast CalculatorTreasury Inflation-Protected Securities (TIPS) CalculatorStock Beta CalculatorTreynor Ratio CalculatorSortino Ratio CalculatorDoppler Effect CalculatorSpring Constant CalculatorPendulum Period CalculatorCentripetal Force CalculatorAngular Velocity CalculatorMoment of Inertia CalculatorSnell's Law CalculatorCoulomb's Law CalculatorElectric Field CalculatorMagnetic Field of Wire CalculatorLens Equation CalculatorA/B Test Significance CalculatorA/B Test Sample Size CalculatorConversion Rate CalculatorCustomer Lifetime Value (CLV) CalculatorCustomer Acquisition Cost (CAC) CalculatorChurn Rate CalculatorRetention Rate Cohort CalculatorNPS (Net Promoter Score) CalculatorPareto Chart GeneratorSix Sigma Process Capability CalculatorTessellation GeneratorSpirograph GeneratorVoronoi Diagram GeneratorDelaunay Triangulation GeneratorL-System Fractal GeneratorJulia Set GeneratorPolar Equation Plotter3D Surface PlotterSierpinski Triangle GeneratorcURL Command BuilderHTTP Status Code ReferenceUUID Validator/DecoderURL ParserQuery String BuilderSVG to React/JSX ConverterSCSS to CSS CompilerLess to CSS CompilerTypeScript PlaygroundJSON Schema GeneratorImage to ASCII Art ConverterImage to SVG TracerLipogram CheckerPangram CheckerAcronym GeneratorBackronym GeneratorPig Latin TranslatorEXIF Data Viewer/RemoverROT13 Encoder/DecoderAtbash Cipher ToolVigenère Cipher ToolPronunciation IPA ConverterHemingway-Style Readability EditorSentence Length Variance AnalyzerWord Frequency AnalyzerBusiness Days CalculatorAdd Business Days to DateHalfway Date CalculatorDate Pattern GeneratorHow Long Until CalculatorHow Long Ago CalculatorBirthday Across Cultures CalculatorLunar Calendar ConverterHijri Calendar ConverterHebrew Calendar ConverterInsulin Sensitivity Factor CalculatorCarb-to-Insulin Ratio CalculatorLean Body Mass to Strength CalculatorOne-Mile Walk Test (Rockport) CalculatorCooper 12-Minute Run CalculatorFFMI CalculatorAPGAR Score CalculatorGlasgow Coma Scale CalculatorWells Score Calculator (DVT/PE)Tennis Score TrackerSoccer xG (Expected Goals) CalculatorCricket Run Rate Calculator