Metadata-Version: 2.1
Name: equation-solver-pro
Version: 0.1
Summary: This Python script is designed to solve simple linear equations with one unknown variable (denoted as `x`). The equation can involve addition, subtraction, multiplication, or division. The script handles equations in various formats, such as `x + a = b`, `a - x = b`, `x * a = b`, and others, and calculates the value of `x` accordingly.
Home-page: https://github.com/pyTabib/Equation_Solver_pro
Author: Tabib
Author-email: pytabib@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Equation Solver Pro


This Python script is designed to solve simple linear equations with one unknown variable (denoted as `x`). The equation can involve addition, subtraction, multiplication, or division. The script handles equations in various formats, such as `x + a = b`, `a - x = b`, `x * a = b`, and others, and calculates the value of `x` accordingly.



## Features:
- Handles equations where `x` is either on the left or right side of the operator.
- Supports basic arithmetic operations: addition (`+`), subtraction (`-`), multiplication (`*`), and division (`/`).
- Provides error handling if the input format is incorrect.



## Supported Equation Formats:
- `x+a=b`

- `a+x=b`

- `x-a=b`

- `a-x=b`

- `x*a=b`

- `a*x=b`

- `x/a=b`

- `a/x=b`

- Use only 'x' as a variable. Here 'a' and 'b' are constants(integers).

## Installation
```bash
pip install equation-solver-pro
```
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
