Metadata-Version: 2.1
Name: taizmath
Version: 0.2
Summary: A Python library for simplifying tasks and enhancing generative AI workflows.
Home-page: https://github.com/t4zn/taizun
Author: Taizun
Author-email: taizun8@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


# taizmath

**taizmath** is an easy-to-use symbolic math library designed as an alternative to SymPy. It simplifies complex mathematical operations like differentiation, integration, Laplace transforms, Fourier transforms, and more.

## Features

- âœ… Symbolic algebra (`add`, `subtract`, `multiply`, `divide`)
- âœ… Calculus operations (`differentiate`, `integrate`)
- âœ… Transforms (`laplace`, `fourier`)
- âœ… Predefined constants (`pi`, `e`)
- âœ… Simple and intuitive syntax

## Installation

Install taizmath via pip:

pip install taizmath


## Usage

```python
from taizmath.core import Symbol
from taizmath.algebra import add
from taizmath.calculus import diff, integrate
from taizmath.transforms import laplace

x = Symbol('x')

# Algebraic operation
expr = add(x, 2)  # (x + 2)
print(expr)

# Differentiation
dx = diff(x, x)  # 1
print(dx)

# Integration
int_expr = integrate(x, x)  # x^2/2
print(int_expr)

# Laplace Transform
laplace_x = laplace(x)  # L[x]
print(laplace_x)
```
