provides Linear Equations in 2 variables as Python Objects
Project description
linear_equations
This is a simple Mathematical Module which is simple to use. The module provides classes through which linear equations in 2 variables can be solved, and visualized.
Classes and Functions provided
- class Symbol
symbols to use in Linear Equations
example: Symbol("x") -> x, Symbol("y") -> y - class LinearEquation1D
objects of type ax + b = 0
each such object has one unique solution - class LinearEquation2D
objects of type ax + by + c = 0
when standalone, each such object has infinitely many solutions
when solved with another such object, the final result may be infinitely many solutions, no solution or a unique solution - function solve1D(eqn)
solves one LinearEquation1D
used to retrieve the solution to a 1D equation as a float - function solve2D(eqn1, eqn2)
solves two LinearEquation2D
used to retrieve solution to two 2D equations as a tuple of floats - function consistency(eqn1, eqn2)
checks and returns if the given LinearEquation2D objects are consistent or not
- function satisfies(eqn, x, y)
returns True if the given pair of numbers satisfy a particular LinearEquation2D and False in all other cases
Each function contains help text that can be accessed through help() in python to know more about it.
Update (0.0.5)
You can now graph and visualize 2-dimensional equations!
Added function graph(eqn1, eqn2) which graphs the given LinearEquation2D objects on a 2D mathematical plot along with their solution (if any)
Update (0.0.6)
Minor bug fixes:
- Fixed issues with plotting linear equations
- Improved legend on graphs
Added function graph_many(eqn1, eqn2, ..., eqnn, show_legend=True) which graphs more than two LinearEquation2D objects on the same plot along with each of their solutions (if any)
Updates (0.0.7)
Minor bug fixes
Reach out to me
If you face issues, contact me through my e-mail: knightt1821@gmail.com
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file linear_equations-0.0.7.tar.gz
.
File metadata
- Download URL: linear_equations-0.0.7.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d065890a5f5b252c34194c8a39cb8840deee5a6ed42299bc471fa2501d5aecbd |
|
MD5 | 1638b1add208953567d015f98adb5642 |
|
BLAKE2b-256 | 152672935ad911cdfbffc78fb5abe084f18c2fe2fca378b393d1882dc58f4838 |
File details
Details for the file linear_equations-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: linear_equations-0.0.7-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61ac2d2ad19b6690a1d743a8c6dfa176a9f895986c1ee84f58f37f8b50c5c40b |
|
MD5 | 25f0326d676277e2ea03f8b6ad024b17 |
|
BLAKE2b-256 | 0dea409f6f2bf52081693780d44723067372e5a90fcb75ed1450445f9909e01f |