Simplex Optimizer is an interactive platform for solving mathematical optimization problems. It ships a Python/FastAPI backend that exposes a clean REST API and a React 18 frontend that visualizes results — including simplex tableaux, feasible-region plots, Branch & Bound trees, and 3D surface graphs — all in the browser.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/FabianeloV/Metodo-simplex/llms.txt
Use this file to discover all available pages before exploring further.
Quickstart
Run the backend and frontend locally in under five minutes.
Optimization Methods
Explore all nine supported solvers — from Simplex to KKT conditions.
API Reference
Full REST endpoint documentation with request/response schemas.
Architecture
Understand how the FastAPI backend and React frontend fit together.
Supported Methods
Simplex Optimizer covers the full spectrum of classical optimization techniques:Simplex (Big-M)
Linear programming with 2–5 variables. Outputs the full iteration tableau.
Graphical LP
2-variable LP with feasible-region visualization and optimal-point overlay.
Binary Integer
0/1 integer programming via Branch & Bound with full exploration tree.
Pure Integer
General integer programming via Branch & Bound with variable bounding.
Bisection
Single-variable unconstrained optimization via bisection on f′(x).
Newton-Raphson
Fast single-variable optimization using second-order Newton updates.
Gradient Descent
Multivariable unconstrained optimization via gradient ascent/descent.
Graphical Multivar
Surface and volume plots for 2–3 variable functions with critical points.
KKT Conditions
Constrained nonlinear programming via Karush-Kuhn-Tucker conditions.
Get Running in Minutes
Open the app
Visit
http://localhost:5173 in your browser, or explore the auto-generated API docs at http://localhost:8000/docs.The API is fully documented via Swagger UI at
http://localhost:8000/docs and ReDoc at http://localhost:8000/redoc when the backend is running.