Simplify Your Workflow: Search MiniWebtool.
Add Extension
Related Tools
Boolean Algebra SimplifierKakuro GeneratorLinear Programming SolverStable Marriage Problem SolverTraveling Salesman Solver (TSP)Truth Table Generator
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 + 0111 โ†’ 0-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.

Advanced Math Operations:

Top & Updated:

Instagram User ID LookupRandom PickerRandom Name PickerImage ResizerLine CounterFacebook User ID LookupRelative Standard Deviation CalculatorSun, Moon & Rising Sign Calculator ๐ŸŒž๐ŸŒ™โœจSort NumbersJob FinderRemove SpacesFPS ConverterWord to Phone Number ConverterMAC Address GeneratorERA Calculator๐Ÿ“ท OCR / Image to Textโฌ› Aspect Ratio CalculatorRandom Quote GeneratorSlope and Grade CalculatorMercury Retrograde CalendarMAC Address LookupBatting Average CalculatorSum CalculatorPercent Off CalculatorFeet and Inches to Cm ConverterSHA256 Hash GeneratorSquare Root (โˆš) CalculatorMerge VideosRandom Credit Card GeneratorRandom IMEI GeneratorRandom Truth or Dare Generator๐Ÿ–ฑ๏ธ Click CounterAudio SplitterVertical Jump CalculatorPhone Number ExtractorNumber of Digits CalculatorInvisible Text GeneratorWeight Loss CalculatorRandom Superpower GeneratorMP3 LooperLog Base 10 CalculatorImage SplitterSalary Conversion CalculatorCaffeine Overdose CalculatorMaster Number CalculatorSun Position CalculatorRandom Fake Address GeneratorBitwise CalculatorNumber to Word ConverterRandom Writing Prompt GeneratorRandom Movie PickerWord Ladder GeneratorRandom Poker Hand GeneratorCm to Feet and Inches ConverterRandom Activity GeneratorText FormatterEmail ExtractorSaturn Return CalculatorOPS CalculatorRoman Numerals ConverterFile Size ConverterAdd Text to ImageBattery Life CalculatorCompound Growth CalculatorYouTube Channel StatisticsLong Division CalculatorStair CalculatorIP Subnet CalculatorSlugging Percentage CalculatorVideo CompressorSHA512 Hash GeneratorRandom Birthday GeneratorQuotient and Remainder CalculatorHalfway Date CalculatorLunar Calendar ConverterRandom Loadout GeneratorBolt Torque CalculatorOctal CalculatorOn Base Percentage CalculatorSigma Notation Calculator (Summation)Binary to Gray Code ConverterBingo Card GeneratorRandom Meal GeneratorRandom Time GeneratorFirst n Digits of PiCompare Two StringsDecimal to BCD ConverterHebrew Calendar ConverterArc Length Calculator๐Ÿ“… Date CalculatorBcrypt Hash Generator / CheckerVideo to Image ExtractorPercent Growth Rate CalculatorBreak Line by CharactersName RandomizerBCD to Decimal ConverterDice RollerAPI TesterOutlier CalculatorLeap Years ListMartingale Strategy CalculatorGray Code to Binary ConverterAcreage CalculatorIP Address to Hex ConverterRandom User-Agent GeneratorWord Scramble GeneratorWHIP CalculatorList of Prime NumbersRandom Emoji GeneratorFlip VideoWAR CalculatorYouTube Tag ExtractorCone Flat Pattern (Template) GeneratorRandomize NumbersProportion CalculatoreBay Fee CalculatorTime Duration Calculator๐Ÿ” Plagiarism CheckerRemove Accent๐ŸŽฐ Gacha Pity CalculatorCM to Inches ConverterMD5 Hash GeneratorText Case ConverterAI Text HumanizerRandom Chess Opening GeneratorBinary to BCD ConverterNumber ExtractorWhat is my Zodiac Sign?Trigonometric Equation SolverName Number CalculatorRandom Tournament Bracket GeneratorAmortization CalculatorDMS to Decimal Degrees ConverterBroken Link CheckerConnect the Dots GeneratorYouTube Thumbnail DownloaderLove Compatibility CalculatorDay of the Year Calculator - What Day of the Year Is It Today?Image CompressorShort Selling Profit CalculatorLottery Number GeneratorDecibel (dB) CalculatorSocial Media Username CheckerVideo SplitterWhat is my Lucky Number?AI Language DetectorLED Resistor CalculatorSort Text By Length๐Ÿ”Š Tone GeneratorAdd Prefix and Suffix to Text1099 Tax CalculatorAstrological Element Balance CalculatorConvolution CalculatorAdjust Video SpeedRandom Group GeneratorAI Punctuation AdderPVIFA CalculatorURL ExtractorImage Cropperโš”๏ธ DPS CalculatorFraction CalculatorMolarity CalculatorCrossword Puzzle MakerRemove Leading Trailing SpacesColor InverterJulian Date ConverterPVIF CalculatorRandom Object GeneratorRandom Math Problem GeneratorReverse VideoRandom Number PickerRatio CalculatorSmall Text Generator โฝแถœแต’แต–สธ โฟ แต–แตƒหขแต—แต‰โพAngel Number CalculatorParabola CalculatorSourdough CalculatorModulo CalculatorRemove Audio from VideoList RandomizerMultiple Fraction CalculatorRandom Chord GeneratorBlood Donation Time CalculatorWater Usage CalculatorRandom Video Thumbnail GeneratorAntilog CalculatorDay of Year CalendarTaco Bar CalculatorAI ParaphraserPER CalculatorReverse TextMAC Address AnalyzerTessellation GeneratorPercentage Increase CalculatorProduct Notation Calculator (Pi Notation)First n Digits of eGoldbach Conjecture VerifierDough Hydration CalculatorRatio to Percentage CalculatorSort Lines AlphabeticallyHex to BCD ConverterBCD to Binary ConverterBCD to Hex ConverterMedian CalculatorStandard Error CalculatorAverage CalculatorHypotenuse CalculatorActual Cash Value CalculatorScientific Notation to Decimal ConverterLog Base 2 CalculatorRoot Mean Square CalculatorSum of Positive Integers CalculatorSHA3-256 Hash GeneratorAI Sentence ExpanderLbs to Kg ConverterHex to Decimal ConverterRandom String GeneratorMarkup 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 CalculatorBoiling Point 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 CalculatorBernoulli Equation CalculatorAP Score CalculatorAttendance Percentage CalculatorPercentage to CGPA ConverterCitation Generator (APA/MLA/Chicago)AI Quiz GeneratorAI Lesson Plan GeneratorInteractive Periodic TableElectron Configuration CalculatorLimiting Reactant CalculatorTheoretical Yield CalculatorHenderson-Hasselbalch CalculatorpKa to Ka ConverterMolality CalculatorNormality CalculatorPercent Composition CalculatorFreezing Point Depression CalculatorBoiling Point Elevation CalculatorOsmotic Pressure CalculatorNernst Equation CalculatorBeer-Lambert Law CalculatorGravitational Force CalculatorEscape Velocity CalculatorKepler's Third Law CalculatorTime Dilation CalculatorE=mcยฒ CalculatorPhoton Energy Calculatorde Broglie Wavelength CalculatorTerminal Velocity CalculatorBuoyancy CalculatorWave Speed CalculatorSpeed of Sound CalculatorMechanical Advantage CalculatorInclined Plane CalculatorFriction CalculatorResistors in Series CalculatorWatts to Amps CalculatorAmps to Watts CalculatorkVA Calculator3-Phase Power CalculatormAh to Wh ConverterGenerator Size CalculatorLumens to Watts ConverterLux to Lumens CalculatorRoom Lighting CalculatorInductive Reactance CalculatorSeries/Parallel Capacitor CalculatorConduit Fill CalculatorAntenna Length CalculatorCubic Yard CalculatorAsphalt CalculatorSod CalculatorGrass Seed CalculatorDeck Stain CalculatorSiding CalculatorBaseboard & Trim CalculatorBaluster Spacing CalculatorEpoxy Resin CalculatorWater Heater Size CalculatorPool Volume CalculatorPool Salt CalculatorPond Volume & Liner CalculatorTV Size CalculatorTV Mounting Height CalculatorPicture Hanging Height CalculatorRug Size CalculatorCurtain Size CalculatorCeiling Fan Size CalculatorDehumidifier Size CalculatorAir Purifier CADR CalculatorFirewood Cord CalculatorCouch Fit CalculatorEngine Displacement Calculator2-Stroke Oil Mix CalculatorOctane Mix CalculatorLease Buyout CalculatorCost Per Mile CalculatorTire Load Index & Speed Rating LookupWheel Offset CalculatorWilks & DOTS CalculatorACFT Score Calculator