Simplified interface to Sympy for solving physics, engineering and maths problems
Project description
mathpad
mathpad is a robust Computer Algebra System (CAS) library built on top of SymPy, providing a simple and intuitive way to solve engineering, science, and math problems using Python.
Quickstart
- Install using package manager of choice. For example,
pip:
pip install mathpad
- Import and use the library in
python:
| Code | Display |
from mathpad import *
v = 5 * m / s
mph = "mph" * miles / hour
eqn = mph == v.eval()
|
|
Documentation
Currently the only in-depth documentation is Walkthrough.ipynb. You can access it on the JupyterLite Sandbox Site here.
Showcase
| Feature | Example | Display |
| Units |
m
m / s ** 2
feet.in_units(cm)
(V * A).in_units(watt)
|
|
| Values |
v = 2.5 * m / s
c = m(5)
|
|
| Symbols |
t = "t" * seconds
y = "\\hat{y}_1" * volts
|
|
| Symbolic Functions |
a = "a(t)" * m / s ** 2
|
|
| Equations |
eqn = (v == a * t)
|
|
| Solving |
sln, = solve([eqn], solve_for=[a])
sln[a]
|
|
| Algebra |
simplify(e ** (1j * pi))
expand((t + 1)(t + 2))
factor(t**2 + 3 * t * s + 2)
subs((t + 1)(t + 2), { t: 5 })
|
|
| Calculus |
diff(a, wrt=t, order=1)
integral(a, wrt=t, between=(0, 10))
|
|
| Vectors |
O = R3("O") # 3D frame of reference
v1 = O[1, 2, 3]
x, y, z = ("x", "y", "z") * m
v2 = O[x, y, z]
v3 = "v_3" @ O
v2.cross(v3)
|
|
| Matrices |
O2 = R2("O2")
A = Mat[O, O2](
[1, 2],
[3, 4],
[5, 6]
)
v2_wrt_O2 = v2 @ A
B = Mat[O2, O]("B")
I = Mat[O2, O2].I
|
|
| Numpy Compatibility |
y = sin(t)
y_fn = as_numpy_func(y)
y_fn({ t: [1, 2, 3] })
import numpy as np
y_fn({
t: np.arange(
start=0, stop=2 * np.pi, step=np.pi / 12
)
})
|
array([0.84147098, 0.90929743, 0.14112001])
array([0. , 0.25881905, 0.5 , 0.70710678, 0.8660254 , 0.96592583, 1. , 0.96592583, 0.8660254 , 0.70710678, 0.5 , 0.25881905]) |
| Code Generation |
generate_c_code(theta, [t])
|
Credits
This package was created with Cookiecutter and the browniebroke/cookiecutter-pypackage project template.
Project details
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mathpad-2.1.0.tar.gz.
File metadata
- Download URL: mathpad-2.1.0.tar.gz
- Upload date:
- Size: 45.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/40.0 requests/2.31.0 requests-toolbelt/1.0.0 urllib3/2.0.3 tqdm/4.65.0 importlib-metadata/6.8.0 keyring/24.2.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec27856fa9d5a517f033bc4495d09fc5ab610a0d3dbb854a132b14d03848f254
|
|
| MD5 |
2b0032131127f6a85db16740cd221abc
|
|
| BLAKE2b-256 |
dc98e296cd306cce3f035fcf3f735c25e84abc334a0f484f2e40fe8048738db8
|
File details
Details for the file mathpad-2.1.0-py3-none-any.whl.
File metadata
- Download URL: mathpad-2.1.0-py3-none-any.whl
- Upload date:
- Size: 53.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/40.0 requests/2.31.0 requests-toolbelt/1.0.0 urllib3/2.0.3 tqdm/4.65.0 importlib-metadata/6.8.0 keyring/24.2.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36fe589f2703eb5d53a6cc11ec5472d600378108fcab9aaf3ddcf01bac41e36c
|
|
| MD5 |
c8449be2d02e87b2d268c8c03446d3ee
|
|
| BLAKE2b-256 |
4e8c7d8d33cb2646a52d5d204c5e21f83a000e9fc2f7e19748f2c5af31d7fde6
|