Metadata-Version: 2.1
Name: numbersD
Version: 0.0.1
Summary: Solving the apitude problems
Author: Dhamodharan
Author-email: dhamodharan1888@gmail.com>
Keywords: python,math,problems,mathematics,scientific calculations
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: numpy


# PyDMath Version - 0.1
## Introduction
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; This **PyDMath** is a mathematical module, with this you can able to perform a mathematical operations 
which includes mensuration, permutation and combination. We can use any use any type of measurement units but the output will return in SI standard units.
This makes differ from other Python modules.

## Math topics included till now
<ul>
  <li>Mensuration</li>
  <ul>
    <li>Area</li>
    <li>Perimeter</li>
    <li>Volume</li>
   </ul>
  <li>Permutation</li>
  <li>Combination</li>
</ul>

## Input and Output format
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Inputs must be a string seperated by "-" for value and the unit. Value on left side and unit on right side. If the input unit is in centimeter, millimeter, kilometer and meter then the output unit will always be meter.

# Mensuration
### Sample code
```python
from PyDMath import perimeter,area,volume
peri = perimeter()
ar = area()
vol = volume()
print(f"Perimeter of the shape {peri.circle('2-cm')}")
print(f"Area of the shape {ar.circle('2-cm')}")
print(f"Volume of the shape {vol.sphere('2-cm')}")
```

## Shapes including
### Perimeter and Area
```Circle``` ```Square``` ```Rectangle``` ```Triangle``` ```Equilateral triangle``` ```Parallelogram``` ```Trapezium``` ```Isosceles triangle``` ```Rhombus```
### Volume
```Sphere``` ```Cylinder``` ```Cube``` ```Rectangular prism``` ```Cone``` ```Hemi sphere``` ```Right rectangular prism``` 

# Permutation and Combination
### Sample code
```python
from PyDMath import fact,permutation,combination
# Factorial
print(fact(5))
perm = permutation()
co = combination()
print(perm.per(4,2))
print(co.comb(8,3))
```
