{"id":20829274,"url":"https://github.com/ganeshsankaran/system-solver-api","last_synced_at":"2026-05-06T14:32:09.610Z","repository":{"id":92810569,"uuid":"229463107","full_name":"ganeshsankaran/system-solver-api","owner":"ganeshsankaran","description":"A Flask API for solving systems of linear equations with two variables","archived":false,"fork":false,"pushed_at":"2019-12-21T23:03:57.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T04:59:56.567Z","etag":null,"topics":["api","flask","python","smt","z3"],"latest_commit_sha":null,"homepage":"https://system-solver-api.herokuapp.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ganeshsankaran.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-21T17:50:11.000Z","updated_at":"2019-12-21T23:05:15.000Z","dependencies_parsed_at":"2023-03-11T09:45:50.729Z","dependency_job_id":null,"html_url":"https://github.com/ganeshsankaran/system-solver-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ganeshsankaran/system-solver-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ganeshsankaran%2Fsystem-solver-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ganeshsankaran%2Fsystem-solver-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ganeshsankaran%2Fsystem-solver-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ganeshsankaran%2Fsystem-solver-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ganeshsankaran","download_url":"https://codeload.github.com/ganeshsankaran/system-solver-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ganeshsankaran%2Fsystem-solver-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32698114,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","flask","python","smt","z3"],"created_at":"2024-11-17T23:19:50.178Z","updated_at":"2026-05-06T14:32:09.575Z","avatar_url":"https://github.com/ganeshsankaran.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# System Solver API\nby Ganesh Sankaran\n\u003chr /\u003e\n\u003ch3\u003eOverview\u003c/h3\u003e\n\u003cp\u003eThis \n\u003ca href=\"https://system-solver-api.herokuapp.com\"\u003eFlask API\u003c/a\u003e\nprovides an endpoint to solve systems of linear equations with two variables using the \n\u003ca href=\"https://github.com/Z3Prover/z3\"\u003eZ3 SMT solver\u003c/a\u003e.\u003c/p\u003e\n\n\u003cp\u003eAn example of such a system is \n\u003ccode\u003e{3x + 2y = 6, x - 4y = 5}\u003c/code\u003e, whose unique solution is \u003ccode\u003e(x, y) = (17/7, -9/14)\u003c/code\u003e.\u003c/p\u003e\n\n\u003cp\u003eIn general, these systems are of the form\n\u003ccode\u003e{a_1_1 * x + a_1_2 * y = b_1, a_2_1 * x + a_2_2 * y = b_2}\u003c/code\u003e and can be\u003c/p\u003e\n\u003cul\u003e\n  \u003cli\u003einconsistent systems (no solution)\u003c/li\u003e\n  \u003cli\u003eindependent systems (unique solution)\u003c/li\u003e\n  \u003cli\u003edependent systems (infinitely many solutions)\u003c/li\u003e\n\u003c/ul\u003e\n\n\u003cp\u003eThis API identifies the type of system and provides a solution if the system is independent.\u003c/p\u003e\n\u003chr /\u003e\n\u003ch3\u003eAPI Endpoints\u003c/h3\u003e\n\u003cpre\u003e\u003cstrong\u003eGET /api/v1/solve\u003c/strong\u003e\u003c/pre\u003e\n\n\u003cp\u003eRequest Parameters\u003c/p\u003e\n\u003cul\u003e\n  \u003cli\u003e\u003ccode\u003ea_1_1\u003c/code\u003e: a floating point number\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003ea_1_2\u003c/code\u003e: a floating point number\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003ea_2_1\u003c/code\u003e: a floating point number\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003ea_2_2\u003c/code\u003e: a floating point number\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003eb_1\u003c/code\u003e: a floating point number\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003eb_2\u003c/code\u003e: a floating point number\u003c/li\u003e\n\u003c/ul\u003e\n\n\u003cp\u003eResponse Parameters\u003c/p\u003e\n\u003cul\u003e\n  \u003cli\u003e\u003ccode\u003ex\u003c/code\u003e: \u003ccode\u003enull\u003c/code\u003e or a string representing the x-value\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003ey\u003c/code\u003e: \u003ccode\u003enull\u003c/code\u003e or a string representing the y-value\u003c/li\u003e\n  \u003cli\u003e\u003ccode\u003enotes\u003c/code\u003e: a string identifying the type of system\u003c/li\u003e\n\u003c/ul\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fganeshsankaran%2Fsystem-solver-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fganeshsankaran%2Fsystem-solver-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fganeshsankaran%2Fsystem-solver-api/lists"}