Simplify Your Workflow: Search MiniWebtool.
Add Extension
Home Page > Math > Advanced Math Operations > Linear Programming Solver

Linear Programming Solver

Solve linear programming problems online using the simplex method. Supports maximize or minimize objectives, mixed ≤/≥/= constraints, up to 8 decision variables, and for 2-variable LPs shows an interactive feasible-region plot with every vertex and the optimum highlighted.

Linear Programming Solver
First line is the objective (Maximize or Minimize …). Each subsequent line is a linear constraint. Use <=, >=, or =. Shortcut: x, y >= 0 declares non-negativity for several variables. Up to 8 variables and 20 constraints.

Embed Linear Programming Solver Widget

About Linear Programming Solver

The Linear Programming Solver is an online calculator that finds the maximum or minimum of a linear objective function subject to a system of linear inequalities or equalities. It uses the simplex method (Big-M variant) so that <=, >=, and = constraints can be mixed freely, and for 2-variable problems it draws an interactive feasible-region plot with every vertex and the optimum highlighted.

What Is Linear Programming?

A linear programming (LP) problem asks:

Maximize (or minimize): Z = c1 x1 + c2 x2 + … + cn xn subject to: a11 x1 + … + a1n xn (≤, ≥, or =) b1 a21 x1 + … + a2n xn (≤, ≥, or =) b2 … am1 x1 + … + amn xn (≤, ≥, or =) bm x1, x2, …, xn ≥ 0

The set of points satisfying every constraint is called the feasible region, a convex polyhedron. The Fundamental Theorem of Linear Programming states that if the LP has a finite optimum, it is attained at a vertex (extreme point) of this polyhedron. This is why the simplex method — which walks from vertex to vertex — is so effective.

How the Simplex Method Works

Starting from a feasible vertex, the simplex method repeatedly improves the objective by pivoting to a neighboring vertex with a better value. The mechanics:

  1. Standard form: convert the LP to max cTx subject to Ax = b, x ≥ 0. For <= constraints, add slack variables; for >=, subtract a surplus and add an artificial with a large penalty −M; for equalities, add an artificial.
  2. Initial tableau: the basis consists of slacks and artificials, which gives an obvious starting vertex.
  3. Entering variable: pick the non-basic variable with the largest positive reduced cost \( c_j - z_j \). If no such variable exists, the current solution is optimal.
  4. Leaving variable: from the entering column, do the min-ratio test — divide each row's RHS by its positive entry in the entering column, and pick the row with the smallest ratio. If no positive entry exists, the LP is unbounded.
  5. Pivot: use Gaussian elimination to make the entering column a unit vector, with 1 in the leaving row.
  6. Repeat until the stopping criterion is met.

If any artificial variable remains in the basis with a positive value at termination, the original LP is infeasible.

Graphical Method (for 2 Variables)

For two-variable problems the feasible region is a 2-D convex polygon. Since the optimum is always at a vertex, enumerating every vertex and evaluating the objective there is enough to solve the problem. This calculator performs that enumeration by intersecting every pair of constraint boundaries, keeping only intersections that satisfy all other constraints, and sorting them counterclockwise for the visualization.

Input Syntax

Write the objective on the first line, then one constraint per line. Variable names can be any identifier (x, y, x1, profit…). Operators are <=, >=, and =. Non-negativity can be written as x, y >= 0 as a shortcut.

Maximize 3x + 5y x + y <= 10 2x + y <= 16 x + 3y <= 18 x, y >= 0

Blank lines and comments beginning with # are ignored. The solver accepts up to 8 decision variables and 20 constraints.

Worked Example

Consider a furniture workshop that builds tables and chairs. Each table yields \\$3 of profit and requires 1 unit of wood and 2 units of labor. Each chair yields \\$5 of profit and requires 1 unit of wood, 1 unit of labor, and 3 units of varnish. Available: 10 wood, 16 labor, 18 varnish. With x = tables and y = chairs, the LP is:

Maximize Z = 3x + 5y x + y <= 10 (wood) 2x + y <= 16 (labor) x + 3y <= 18 (varnish) x, y >= 0

The feasible region is a pentagon. Evaluating Z at each vertex:

Vertex (x, y)Z = 3x + 5yFeasible?
(0, 0)0Yes
(8, 0)24Yes
(6, 4)38 ← optimumYes
(0, 6)30Yes

So the workshop should build 6 tables and 4 chairs for a maximum profit of \\$38. The wood and labor constraints are binding (they equal their RHS at the optimum); varnish has a slack of 0 (also binding in this case), meaning all three resources are exhausted.

Common Pitfalls & What the Solver Detects

SituationSymptomHow to fix
Unbounded LP Solver reports "Unbounded" Add a missing upper bound. Objective can grow without limit because the feasible region extends infinitely in the improving direction.
Infeasible LP Solver reports "Infeasible" Constraints contradict one another (e.g. x >= 10 with x <= 5). Review every pair of bounds.
Alternate optima Warning badge; optimal vertex unique but Z is achieved along an edge Happens when the objective vector is parallel to a binding edge. Any convex combination of the two vertices on that edge is also optimal.
Degeneracy / cycling Simplex iterates without improving Z Rare in textbook problems; can be resolved with Bland's rule or perturbation. This solver caps iterations to avoid infinite loops.

Applications

How to Use This Calculator

  1. Type your LP in the text box. The first line must begin with Maximize or Minimize. Each following line is one constraint, one per line.
  2. Use the shortcut x, y >= 0 to declare non-negativity for all listed variables at once.
  3. Click Solve LP Problem. The solver reports the optimal value Z, the optimal values of every decision variable, a list of binding constraints, and for 2-variable LPs an interactive feasible-region plot.
  4. Hover a vertex in the plot to see its coordinates and Z value. The optimum is highlighted with a star.
  5. Review the simplex tableaux to see every pivot and trace how the method improves Z. The entering column is highlighted in amber; the leaving row in red.

Frequently Asked Questions

What is a linear programming problem?

A linear programming (LP) problem asks for the maximum or minimum of a linear objective function over a set of decision variables that satisfy a system of linear inequalities or equalities. The feasible set is a convex polyhedron, and the optimum is always attained at one of its vertices — the key fact the simplex method exploits.

How does the simplex method work?

The simplex method walks along vertices of the feasible polyhedron. Each step (a "pivot") exchanges one variable in the basis for another, moving to a neighboring vertex with a strictly better objective. The algorithm stops when no pivot can improve Z — the current vertex is then optimal. This tool uses the Big-M variant so that <=, >=, and = constraints can be mixed.

What is the feasible region?

The feasible region is the set of all variable values satisfying every constraint simultaneously. For 2 variables it is a 2-D convex polygon; for n variables it is an n-dimensional polyhedron. An empty polyhedron means the LP is infeasible; a polyhedron that extends infinitely in the improving direction means the LP is unbounded.

What does "unbounded" mean in linear programming?

An LP is unbounded when the feasible region stretches to infinity in a direction where the objective keeps improving. For example, Maximize x subject only to x ≥ 0 has no finite maximum. Real-world LPs that return unbounded usually reveal a missing constraint — often an upper bound on a resource or variable.

What does "alternate optima" mean?

Alternate optima occur when more than one point attains the same best objective value. Geometrically, the objective is parallel to a binding edge of the polygon, so every point along that edge — and every convex combination of its endpoints — is optimal. The solver flags this when any non-basic decision variable has a reduced cost of zero at termination.

How many variables and constraints does the solver accept?

Up to 8 decision variables and 20 constraints. The interactive feasible-region plot is drawn only for 2-variable problems; with 3 or more variables you still get the full numerical simplex solution, step-by-step tableaux, and binding-constraint report.

Further Reading

Reference this content, page, or tool as:

"Linear Programming Solver" at https://MiniWebtool.com/linear-programming-solver/ from MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: Apr 21, 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 NumbersRelative Standard Deviation CalculatorMAC Address GeneratorBatting Average CalculatorRemove SpacesERA CalculatorFeet and Inches to Cm ConverterWord to Phone Number ConverterRandom Truth or Dare GeneratorMAC Address LookupFacebook User ID LookupSun, Moon & Rising Sign Calculator 🌞🌙✨Sum CalculatorImage ResizerPercent Off CalculatorSquare Root (√) CalculatorMP3 LooperSHA256 Hash GeneratorRandom Credit Card GeneratorOPS CalculatorJob FinderVertical Jump CalculatorSlope and Grade CalculatorBitwise CalculatorAudio SplitterNumber of Digits CalculatorAI Text HumanizerRoman Numerals ConverterLog Base 10 CalculatorSaturn Return CalculatorRandom Activity GeneratorRandom Quote GeneratorCm to Feet and Inches ConverterSlugging Percentage CalculatorInvisible Text GeneratorPhone Number ExtractorRandom IMEI GeneratorMerge VideosSalary Conversion CalculatorText Formatter⬛ Aspect Ratio CalculatorRandom Movie PickerRandom Loadout GeneratorRandom Poker Hand GeneratorRandom Fake Address GeneratorRandom Superpower GeneratorCaffeine Overdose CalculatorOn Base Percentage CalculatorWHIP CalculatorCM to Inches ConverterLove Compatibility CalculatorNumber to Word ConverterWord Ladder GeneratorOctal CalculatorFile Size ConverterVideo to Image ExtractorFirst n Digits of PiDecimal to BCD ConverterBinary to Gray Code ConverterRandom Meal GeneratorRandom Writing Prompt GeneratorMaster Number CalculatorWAR CalculatorCompare Two StringsCompound Growth CalculatorRandom Sound Frequency GeneratorYouTube Channel StatisticsPER CalculatorSteel Weight CalculatorQuotient and Remainder CalculatorConnect the Dots GeneratorTime Duration CalculatorRandom Object GeneratorStair CalculatorAdd Prefix and Suffix to TextGray Code to Binary ConverterRandom Birthday Generator📅 Date CalculatorBingo Card GeneratorSocial Media Username CheckerBCD to Decimal ConverterRemove Line BreaksClothing Size ConverterBattery Life CalculatorLeap Years ListProportion CalculatorPercent Growth Rate CalculatorGrade CalculatorWhat is my Lucky Number?Day of the Year Calculator - What Day of the Year Is It Today?Outlier CalculatorDMS to Decimal Degrees Converter📷 OCR / Image to TextSHA512 Hash GeneratorArc Length CalculatorImage Splitter🔍 Plagiarism CheckerBinary to BCD ConverterVideo CompressorIP Subnet Calculator🖱️ Click CounterAdd Text to ImageLong Division CalculatorCone Flat Pattern (Template) GeneratorRemove Leading Trailing SpacesVideo SplitterAcreage CalculatorRemove AccentRandom Chord GeneratorMartingale Strategy CalculatorURL ExtractorBoiling Point CalculatorImage CompressorList of Prime NumbersModulo CalculatorRandom Chess Opening GeneratorAI ParaphraserAI Punctuation AdderSum of Positive Integers CalculatorRandom Time GeneratorSmall Text Generator ⁽ᶜᵒᵖʸ ⁿ ᵖᵃˢᵗᵉ⁾IP Address to Hex ConverterWhat is my Zodiac Sign?Day of Year CalendarTaco Bar CalculatorSquare Numbers ListTrigonometric Equation SolverBreak Line by CharactersRandom Emoji GeneratorList RandomizerAngel Number CalculatorName Number CalculatorCryptogram GeneratorLottery Number GeneratorNumber ExtractorRandom Number PickerBroken Link CheckerMorse Code GeneratorAstrological Element Balance CalculatorPVIF CalculatorMultiple Fraction Calculator🎰 Gacha Pity CalculatorAI Language DetectorLbs to Kg ConverterBcrypt Hash Generator / CheckerAdjust Video SpeedHappy Number CalculatorMolarity CalculatorAPI TesterNonogram Generator (Picross)Random Tournament Bracket GeneratorFlip VideoYouTube Tag ExtractorMAC Address AnalyzerRatio CalculatorWord Scramble GeneratorEmail ExtractorHypotenuse CalculatorRandom Line PickerMandelbrot Set ExplorerBonus CalculatorArctan2 CalculatorError Function CalculatorHelium Balloon Lift CalculatorBirth Day of the Week CalculatorConvolution CalculatorMiter Angle CalculatorWeight Loss CalculatorNumber Pattern FinderPVIFA CalculatorMercury Retrograde CalendarHex to BCD ConverterMaze GeneratorLog Base 2 CalculatorPercent to PPM ConverterExponential Decay CalculatorYouTube Comment PickerPipe Flow CalculatorVideo CropperPercentile CalculatorCoin Flipperkg to lbs ConverterVenus Sign CalculatorYouTube Earnings EstimatorAdd or Replace Audio in VideoCube Numbers ListOnline NotepadRounding CalculatorIs it a Prime Number?Exponential Growth Calculator🔊 Tone GeneratorRight Triangle CalculatorAverage Deviation CalculatorSort Lines AlphabeticallyBCD to Binary ConverterBCD to Hex ConverterMedian CalculatorStandard Error CalculatorAverage CalculatorReverse VideoRemove Audio from VideoActual Cash Value CalculatorScientific Notation to Decimal ConverterRoot 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 Calculator