Metadata-Version: 2.1
Name: discrete_math_helper
Version: 1.1.3
Summary: Simple calculator for solving problems realted to discrete mathmatics, such as combinations, probabilities, truth-tables, and more.
Home-page: https://github.com/dokkharsh/discrete_math_helper
Author: Harsha Dokku
Author-email: dokkuh@umich.edu
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# 1. Introduction
> Simple calculator for solving problems related to discrete mathmatics, such as combinations, probabilities, truth-tables, and more.
# 2. How to Install
> - pip install discrete-math-helper
> - pip install --upgrade discrete-math-helper
# 3. How to Run
> - from discrete_math_helper import calc
> - calc = calc.Calculator()
> - #Combination Example: calc.combination(6, 2)
> - #Truth Table Example: calc.truthtable("p and q")
# 4. Available Arguments
> - Combinations: calc.combination(n,r)
> - Permutations: calc.permutation(n,r)
> - Truth Table: calc.truthtable("statement containing variables: p, q")
> - Bayes' Probability: calc.bayes(P(T|A), P(A), P(T))
> - Big O Calculator: calc.bigo(a,b,d)
# 5. Creater Contact Information
> - Email: dokkuh@umich.edu
> - Phone: (479) 544-2885
# 6. Contributors
> - Zalan Shah: zalans@umich.edu
