{"id":20726337,"url":"https://github.com/emmmabk/matrix_solution","last_synced_at":"2025-03-11T08:48:32.802Z","repository":{"id":259480213,"uuid":"875094188","full_name":"EMMMABK/Matrix_Solution","owner":"EMMMABK","description":"A Python tool for solving linear systems of equations with Gaussian elimination. It transforms matrices into row echelon form and finds solutions through back-substitution, supporting various matrix sizes.","archived":false,"fork":false,"pushed_at":"2025-02-11T10:55:37.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-11T11:37:09.577Z","etag":null,"topics":["algebra","math","matrices","python"],"latest_commit_sha":null,"homepage":"","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/EMMMABK.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":"2024-10-19T04:52:46.000Z","updated_at":"2025-02-11T10:55:41.000Z","dependencies_parsed_at":"2025-01-17T23:39:47.631Z","dependency_job_id":null,"html_url":"https://github.com/EMMMABK/Matrix_Solution","commit_stats":null,"previous_names":["emmmabk/matrix_solution"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EMMMABK%2FMatrix_Solution","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EMMMABK%2FMatrix_Solution/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EMMMABK%2FMatrix_Solution/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EMMMABK%2FMatrix_Solution/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EMMMABK","download_url":"https://codeload.github.com/EMMMABK/Matrix_Solution/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243004121,"owners_count":20220237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["algebra","math","matrices","python"],"created_at":"2024-11-17T04:24:28.477Z","updated_at":"2025-03-11T08:48:32.792Z","avatar_url":"https://github.com/EMMMABK.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## English\n\n### Matrix Operations Program\n\nThis program allows you to perform two main operations on matrices: solving systems of linear equations and finding the inverse of a matrix. It uses the Gaussian elimination method for solving equations and a similar approach for finding the inverse.\n\n## Screenshots\n\n![matrix](./assets/matrix.png)\n![matrix](./assets/matrix1.png)\n\n### Features\n\n1. **Solve a System of Linear Equations**: \n   - Input a matrix of coefficients and the corresponding constants.\n   - The program handles cases with no solution or infinite solutions.\n   - You can provide a specific value for one of the variables.\n\n2. **Find the Inverse of a Matrix**: \n   - Input a square matrix.\n   - The program checks if the matrix is invertible and computes the inverse if possible.\n\n### Requirements\n\n- Python 3.x\n- NumPy library\n\n### How to Use\n\n1. **Install Dependencies**:\n   Ensure you have Python 3.x installed. You can install the NumPy library using pip:\n   ```bash\n   pip install numpy\n   ```\n\n2. **Run the Program**:\n   Execute the program by running:\n   ```bash\n   python matrix_operations.py\n   ```\n\n3. **Choose an Operation**:\n   - Select an operation (1 to solve equations, 2 to find an inverse, or 3 to exit).\n   \n4. **Input the Necessary Matrices**:\n   Follow the prompts to input the matrices as required.\n\n### Example\n\nTo solve a system of equations represented by the matrix:\n```\n1 2 | 3\n4 5 | 6\n```\nInput:\n```\n2\n3\n1 2\n4 5\n```\n\nTo find the inverse of a matrix:\n```\n1 2\n3 4\n```\nInput:\n```\n2\n1 2\n3 4\n```\n\n### License\n\nThis project is open source and available under the MIT License.\n\n**Note:**\nWe have a code editor \"VS Code\", download it and install Python. (You can Google it)\nBy pressing Ctrl Shift + on your keyboard. A terminal will open. Everything shown above must be entered into the terminal.\n\n---\n\n## Русский\n\n### Программа для работы с матрицами\n\nЭта программа позволяет выполнять две основные операции с матрицами: решать системы линейных уравнений и находить обратную матрицу. Она использует метод Гаусса для решения уравнений и аналогичный подход для нахождения обратной.\n\n### Возможности\n\n1. **Решение системы линейных уравнений**:\n   - Ввод матрицы коэффициентов и соответствующих констант.\n   - Программа обрабатывает случаи без решений или с бесконечным количеством решений.\n   - Вы можете задать конкретное значение для одной из переменных.\n\n2. **Нахождение обратной матрицы**:\n   - Ввод квадратной матрицы.\n   - Программа проверяет, является ли матрица обратимой, и вычисляет обратную, если это возможно.\n\n### Требования\n\n- Python 3.x\n- Библиотека NumPy\n\n### Как использовать\n\n1. **Установите зависимости**:\n   Убедитесь, что у вас установлен Python 3.x. Вы можете установить библиотеку NumPy с помощью pip:\n   ```bash\n   pip install numpy\n   ```\n\n2. **Запустите программу**:\n   Выполните программу, запустив:\n   ```bash\n   python matrix_operations.py\n   ```\n\n3. **Выберите операцию**:\n   - Выберите операцию (1 для решения уравнений, 2 для нахождения обратной, или 3 для выхода).\n\n4. **Введите необходимые матрицы**:\n   Следуйте подсказкам для ввода матриц.\n\n### Пример\n\nДля решения системы уравнений, представленной матрицей:\n```\n1 2 | 3\n4 5 | 6\n```\nВвод:\n```\n2\n3\n1 2\n4 5\n```\n\nДля нахождения обратной матрицы:\n```\n1 2\n3 4\n```\nВвод:\n```\n2\n1 2\n3 4\n```\n\n### Лицензия\n\nЭтот проект является открытым исходным кодом и доступен под лицензией MIT.\n\n**Примечание:**\nУ нас есть редактор кода \"VS Code\", скачав его откройте, и установите Python. (Можно в Google)\nНажав на клавиатуре Ctrl Shift +. Откроется терминал. Все что вышеуказано надо ввести в терминал.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmmabk%2Fmatrix_solution","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femmmabk%2Fmatrix_solution","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmmabk%2Fmatrix_solution/lists"}