Simplify Your Workflow: Search MiniWebtool.
Add Extension
See also
Word Frequency AnalyzerRemove Lines Containing...Smoking Wood Pairing GuideTrailer Tongue Weight CalculatorAlimony Calculator
Home Page > Math > Advanced Math Operations > Stable Marriage Problem Solver

Stable Marriage Problem Solver

Solve the stable marriage / stable matching problem using the Gale-Shapley algorithm. Paste ranked preference lists for two equally-sized groups and get the guaranteed-stable pairing, with an animated proposal-by-proposal trace, satisfaction statistics, blocking-pair verification, and an interactive bipartite visualization.

Stable Marriage Problem Solver
A
One line per member: Name: Pref1, Pref2, ... โ€” list every Group B member in preference order.
B
Same format. Each Group B member ranks all Group A members.
In Gale-Shapley, the proposing side gets their best possible stable partner; the receiving side gets their worst.

Embed Stable Marriage Problem Solver Widget

About Stable Marriage Problem Solver

The Stable Marriage Problem Solver is an interactive implementation of the Gale-Shapley deferred-acceptance algorithm, the 1962 matching algorithm that David Gale and Lloyd Shapley proved always produces a stable pairing between two equally-sized groups given each member's full ranking of the other side. This tool takes your preference lists, runs the algorithm step by step, and shows the result as a stable matching, an animated bipartite visualization, preference heatmaps, and a verified proof that no blocking pair exists.

What Is the Stable Marriage Problem?

Given two disjoint sets of equal size โ€” say n men and n women, or n applicants and n positions โ€” and a complete preference list from every member ranking every member of the other side, a matching is a one-to-one pairing between the two sets. The matching is called stable if no pair (a, b) outside the matching would both rather be together than stay with their assigned partners.

Formally, a matching M is stable if there is no blocking pair โ€” a pair (a, b) with a matched to b' and b matched to a' such that:

a prefers b to b' AND b prefers a to a'

If both conditions hold, both a and b would abandon their current partners, which destabilises the matching. A stable matching is one where no such pair exists.

The Gale-Shapley Algorithm

Gale and Shapley proved โ€” constructively โ€” that a stable matching always exists for any set of preferences, and they gave an efficient algorithm to find one. The algorithm runs in rounds:

  1. Every unengaged proposer proposes to the highest-ranked receiver on their list who has not yet rejected them.
  2. Each receiver who got one or more proposals picks the one they prefer most (compared against any current tentative fiancรฉ) and tentatively accepts; everyone else is rejected.
  3. Rejected proposers become free again and move on to their next choice in the following round.
  4. The algorithm terminates when every proposer is engaged โ€” which is guaranteed to happen in at most nยฒ proposals.
Time complexity: O(nยฒ) Space complexity: O(nยฒ) Proposals before termination: at most nยฒ

Key Theoretical Properties

Existence & Uniqueness

A stable matching always exists (Gale & Shapley, 1962), but is not necessarily unique. For a given preference set there can be multiple stable matchings, and they form a lattice ordered by joint preference.

Proposer Optimality

When one side proposes, Gale-Shapley produces the proposer-optimal stable matching: every proposer receives the best partner they could possibly be paired with in any stable matching. By a symmetric argument, this is also the receiver-pessimal matching โ€” the receiving side gets their worst stable partner. Switching the proposing side in this calculator often changes the result.

Strategy Proofness for Proposers

Under Gale-Shapley, proposers have no incentive to misreport their preferences: telling the truth is a dominant strategy for them. Receivers, however, can sometimes benefit from strategic misreporting โ€” one of the reasons the hospital-residents market in the US is designed with students as the proposing side.

Rural Hospitals Theorem

The set of unmatched agents is identical across all stable matchings. So if your instance has unbalanced sizes (beyond the scope of this classic tool) the same people will be unmatched in every stable solution.

Input Format

This calculator expects one line per member, with name followed by a colon and a full ranked preference list separated by commas:

Name1: first choice, second choice, third choice, ..., last choice Name2: first choice, second choice, ... ...

Requirements:

How to Use This Calculator

  1. Enter preferences for Group A in the left text area โ€” one line per member, full ranked list.
  2. Enter preferences for Group B in the right text area โ€” one line per member, same format.
  3. Pick the proposing side. Choose Group A or Group B. Try both to compare the A-optimal vs B-optimal outcomes.
  4. Click "Solve Stable Matching." The calculator runs Gale-Shapley and produces the stable pairs, statistics, animation, and proof of stability.
  5. Scrub the animation with the play / step / reset controls to see every proposal, acceptance, swap, and rejection in order.
  6. Inspect the heatmap. Each cell shows the ranking; the yellow-outlined cells form the final matching โ€” look at how high or low those cells sit to see how "happy" each side is.

Worked Example โ€” The Classic 3ร—3

Men: Alex, Bryan, Chris. Women: Bea, Claire, Diana. Preferences:

Alex: Bea, Claire, Diana Bryan: Claire, Bea, Diana Chris: Diana, Bea, Claire Bea: Bryan, Alex, Chris Claire: Alex, Bryan, Chris Diana: Chris, Bryan, Alex

Running Gale-Shapley with men proposing yields Alexโ€“Bea, Bryanโ€“Claire, Chrisโ€“Diana in a single round (every man's first choice matches a woman whose first choice is someone else โ€” no conflict). The matching is stable: no man-woman pair would both be better off swapping partners, so there is no blocking pair.

Real-World Applications

Application Group A Group B Who proposes
NRMP Residency Match (US) Medical students Hospital programs Students โ€” designed to be student-optimal since 1998
NYC / Boston School Choice Families Public schools Families โ€” replaced a strategic-gaming mechanism in the 2000s
College Admissions Applicants Universities Originally Gale-Shapley's motivating example
Kidney Exchange Donor-recipient pairs Other donor-recipient pairs Specialized cycle-finding extension of matching theory
Dating & Roommate Matching Users Potential partners Consumer apps often use simplified versions of the same idea

Why Lloyd Shapley Won a Nobel Prize

In 2012 the Royal Swedish Academy of Sciences awarded the Nobel Prize in Economics to Lloyd Shapley (for the theory, alongside David Gale who had passed away) and Alvin Roth (for applying the theory to real markets, including redesigning the US medical residency match and kidney exchange networks). The award cited "the theory of stable allocations and the practice of market design."

Frequently Asked Questions

What is the stable marriage problem?

The stable marriage problem asks: given two equally-sized groups where each member ranks all members of the other group from most to least preferred, can we pair everyone up so that no two people would both prefer to leave their current partners for each other? Such a pairing is called a stable matching. The Gale-Shapley algorithm solves this problem in O(nยฒ) time and always finds a stable matching.

How does the Gale-Shapley algorithm work?

The Gale-Shapley deferred-acceptance algorithm proceeds in rounds. In each round, every currently-unengaged proposer proposes to the highest-ranked receiver on their list who has not yet rejected them. Each receiver tentatively accepts the best proposal received so far and rejects the rest; any displaced proposer becomes free again. The algorithm terminates when no proposer is free, which happens in at most nยฒ proposals.

Is the stable matching unique?

No. A stable matching instance can have many stable matchings. However, when one side proposes, Gale-Shapley always produces the proposer-optimal stable matching: every proposer gets the best partner they could possibly get in any stable matching. By symmetry, this is also the receiver-pessimal matching for the other side. Switching the proposing side often yields a different stable matching.

What is a blocking pair?

A blocking pair is a pair (a, b) that is not currently matched where a prefers b to their current partner AND b also prefers a to their current partner. If any blocking pair exists, the matching is unstable because those two would rather pair up with each other. A stable matching has no blocking pairs, which this calculator verifies automatically after each solve.

What are real applications of stable matching?

The Gale-Shapley algorithm powers the National Resident Matching Program that assigns medical students to residencies in the United States, school-choice systems in Boston and New York, college admissions in several countries, organ-donor kidney exchange chains, and roommate-assignment systems. Lloyd Shapley and Alvin Roth won the 2012 Nobel Prize in Economics partly for this work.

Do both groups need to be the same size?

In the classical stable marriage formulation, yes. Both sides must have the same number of members and each must provide a complete ranking of the other side. Unbalanced variants (such as the stable matching with incomplete lists or the hospital-residents problem) exist but require modified algorithms. This calculator enforces equal sizes and complete preference lists.

Further Reading

Reference this content, page, or tool as:

"Stable Marriage Problem Solver" at https://MiniWebtool.com/stable-marriage-problem-solver/ from MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: Apr 22, 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 Picker WheelImage ResizerFacebook User ID LookupLine CounterRSD Calculator - Relative Standard DeviationSort NumbersFPS ConverterMAC Address GeneratorRemove SpacesWord to Phone Number ConverterSun, Moon & Rising Sign Calculator ๐ŸŒž๐ŸŒ™โœจ๐Ÿ“ท OCR / Image to Textโฌ› Aspect Ratio CalculatorRandom Quote GeneratorERA CalculatorMAC Address Lookup๐Ÿ–ฑ๏ธ Click CounterSquare Root (โˆš) CalculatorMerge VideosSlope and Grade CalculatorJob FinderPercent Off CalculatorSum CalculatorWeight Loss CalculatorSHA256 Hash GeneratorBatting Average CalculatorCm to Feet and Inches ConverterRandom Truth or Dare GeneratorMP3 LooperRandom Poker Hand GeneratorAdd Text to ImageVertical Jump CalculatorRandom Credit Card GeneratorRoman Numerals ConverterNumber of Digits CalculatorAudio SplitterRandom Fake Address GeneratorRandom IMEI GeneratorLog Base 10 CalculatorInvisible Text GeneratorFeet and Inches to Cm ConverterRandom Birthday GeneratorPhone Number ExtractorBitwise CalculatorJulian Date ConverterImage SplitterRandom Superpower GeneratorRandom Writing Prompt GeneratorSalary Conversion CalculatorNumber to Word ConverterSun Position CalculatorName RandomizerText FormatterLunar Calendar ConverterRandom Activity GeneratorCaffeine Overdose CalculatorIP Subnet CalculatorOctal CalculatorHalfway Date CalculatorBCD ConvertereBay Fee CalculatorCompound Growth CalculatorRandom Movie PickerBolt Torque CalculatorLong Division CalculatorFile Size ConverterBinary to Gray Code ConverterImage CompressorYouTube Channel StatisticsWord Ladder GeneratorQuotient and Remainder CalculatorEmail ExtractorStair CalculatorSHA512 Hash GeneratorOutlier CalculatorRandom Meal GeneratorVideo CompressorHebrew Calendar ConverterLeap Years ListFirst n Digits of PiOPS CalculatorBCD to Decimal ConverterWAR CalculatorRandom Loadout GeneratorBreak Line by CharactersList of Prime NumbersMultiplication CalculatorStandard Error CalculatorBcrypt Hash Generator / Checker๐Ÿ“… Date CalculatorSlugging Percentage Calculator๐Ÿ” Plagiarism CheckerAPI TesterMD5 Hash GeneratorRandomize NumbersAI Language DetectorURL ExtractorFlip VideoDMS to Decimal Degrees ConverterMaster Number CalculatorBroken Link CheckerCompare Two StringsMultiple Fraction CalculatorRandom Number Picker๐ŸŽฐ Gacha Pity CalculatorAstrological Element Balance Calculator๐Ÿ”Š Tone GeneratorArc Length CalculatorVideo to Image ExtractorEstimation CalculatorIP Address to Hex ConverterWhat is my Zodiac Sign?Add Prefix and Suffix to TextIs it a Prime Number?Percent to PPM ConverterRandom Emoji GeneratorRemove AccentSocial Media Username CheckerBingo Card GeneratorNumber ExtractorOn Base Percentage CalculatorPercent Growth Rate CalculatorRandom Tournament Bracket GeneratorTime Duration CalculatorDay of the Year Calculator - What Day of the Year Is It Today?Cone Flat Pattern (Template) GeneratorLottery Number GeneratorName Number CalculatorAcreage CalculatorBattery Life CalculatorDay of Year CalendarLED Resistor CalculatorModulo CalculatorRatio CalculatorList RandomizerSocial Media Post Time OptimizerGray Code to Binary ConverterRandom Math Problem GeneratorRandom User-Agent GeneratorVideo SplitterRatio to Percentage CalculatorYouTube Tag ExtractorRandom Chord GeneratorSmall Text Generator โฝแถœแต’แต–สธ โฟ แต–แตƒหขแต—แต‰โพWord Scramble GeneratorIP Address to Binary ConverterChinese Gender PredictorDecibel (dB) CalculatorRandom Video Thumbnail GeneratorSquare Numbers ListConnect the Dots GeneratorMercury Retrograde CalendarImage CropperSaturn Return CalculatorFraction CalculatorRemove Line BreaksProportion CalculatorOrder of Operations Calculator (PEMDAS)Random PIN GeneratorScientific Notation to Decimal ConverterRandom Line PickerMagic 8-Ball๐Ÿ“Š Bar Graph MakerLove Compatibility CalculatorText Case ConverterColor InverterAdjust Video SpeedFirst n Digits of eWhat is my Lucky Number?Random Excuse GeneratorBinary to BCD Converter๐Ÿ’ง Dew Point CalculatorImage EnhancerRadical SimplifierTaco Bar CalculatorLbs to Kg ConverterPER CalculatorTrigonometric Equation SolverPregnancy CalendarReverse VideoHeight Percentile CalculatorBackronym GeneratorMcg to Mg ConverterPaycheck Calculator (Take-Home Pay)Random Object GeneratorWHIP CalculatorAmortization CalculatorGolden Ratio CalculatorAngel Number CalculatorInvisible Character RemoverWhitespace VisualizerAI Text HumanizerCrossword Puzzle MakerHTML CompressorParabola CalculatorRandom Chess Opening GeneratorAI ParaphraserAI Punctuation AdderSort Lines AlphabeticallyHex to BCD ConverterBCD to Binary ConverterBCD to Hex ConverterMedian CalculatorAverage CalculatorPVIFA CalculatorHypotenuse CalculatorRemove Audio from VideoActual Cash Value CalculatorLog Base 2 CalculatorRoot Mean Square CalculatorSum of Positive Integers CalculatorSHA3-256 Hash GeneratorAI Sentence ExpanderHex to Decimal ConverterRandom Group GeneratorConvolution CalculatorMAC Address AnalyzerRandom String GeneratorRemove Leading Trailing SpacesMarkup CalculatorPVIF 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 CalculatorCTR 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 CalculatorSurfboard Volume CalculatorTennis Grip Size CalculatorBackpack Size CalculatorCelsius to Fahrenheit ConverterFahrenheit to Celsius ConverterKm to Miles ConverterMiles to Km ConverterMM to Inches ConverterInches to MM ConverterStone to Kg ConverterKg to Stone ConverterLiters to Gallons ConverterGallons to Liters ConverterML to Oz ConverterOz to ML ConverterSquare Meters to Square Feet ConverterSquare Feet to Square Meters ConverterCubic Feet to Cubic Yards ConverterCubic Meters to Cubic FeetKnots to MPH ConverterMPH to KMH / KMH to MPHMg to Ml ConverterAI Text SummarizerAI TranslatorAI Story GeneratorAI Poem GeneratorAI Song Lyrics GeneratorIndian Land Unit ConverterTola to Gram ConverterPX to REM ConverterPT to PX ConverterMerge PDFSplit PDFCompress PDFPDF to JPGJPG to PDFRotate PDFDelete PDF PagesAdd Page Numbers to PDFProtect PDFReorder PDF PagesPDF Word CounterPDF Page ExtractorPDF to Text ExtractorUnlock PDF (Owner-Password Removal)PDF Flatten ToolAI Rap Lyrics GeneratorAI Cover Letter GeneratorAI Resume Bullet GeneratorAI LinkedIn Headline & Bio GeneratorAI Instagram Caption GeneratorAI YouTube Title & Description GeneratorAI Video Script GeneratorAI Product Description GeneratorAI Press Release GeneratorAI Wedding Speech GeneratorAI Thank-You Note GeneratorAI Dream InterpreterRandom Question GeneratorWould You Rather GeneratorNever Have I Ever GeneratorIcebreaker Question GeneratorCharades GeneratorPictionary Word GeneratorHangman Word GeneratorTrivia Question GeneratorRandom Fact GeneratorRandom Joke GeneratorDad Joke GeneratorPickup Line GeneratorCompliment GeneratorDaily Affirmation GeneratorJournal Prompt GeneratorDrawing Idea GeneratorFortune Cookie GeneratorFantasy Name GeneratorCapacitor Bank Sizing CalculatorSolar Charge Controller Sizing CalculatorBattery C-Rate CalculatorBattery Internal Resistance CalculatorPeukert Battery Runtime CalculatorWire Resistance CalculatorPCB Via Current CalculatorBand Name GeneratorRap Name GeneratorNickname GeneratorTeam Name GeneratorGamertag Generator