百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
S

symbolica

> 后端框架
开源

Symbolica 是一个用于 Python 和 Rust 的高性能计算代数库。它可以处理大型表达式、匹配模式以及生成优化的数值编码。

953 stars0 点赞0 次浏览
访问官网GitHub

工具介绍

Symbolica 是一个用于 Python 和 Rust 的高性能计算代数库。它可以处理大型表达式、匹配模式以及生成优化的数值编码。

Symbolica ⊆ Modern Computer Algebra

Symbolica is a high-performance computer algebra library for Python and Rust. It is built for large expressions, symbolic rewrites, exact polynomial arithmetic, and optimized numerical evaluators.

Trusted by CERN and research groups at ETH Zurich, the University of Zurich, the University of Bern, and Karlsruhe Institute of Technology.

Try the live Jupyter Notebook demo, read the documentation, or see symbolica.io for licensing and support.

Why Symbolica?

  • Native Python and Rust APIs for the same symbolic core
  • Optimized numerical evaluators, with JIT, C++, SIMD, ASM, and CUDA code generation
  • Fast multivariate polynomial arithmetic for large symbolic workloads
  • Exact solutions of polynomial and rational equation systems
  • Pattern matching and rewrites for domain-specific algebra
  • Mixed exact and numerical computation with error propagation
  • Streaming tools for expressions too large to keep in memory
  • Run symbolic computations directly in the browser with WebAssembly

Installation

Visit the Get Started page for detailed installation instructions.

Python

Symbolica can be installed from PyPI using pip:

pip install symbolica

Rust

Add Symbolica to a Rust project:

cargo add symbolica

Example

Go from a physical model to a calibrated result in a few steps. Explore more in the guide.

Pendulum calibration

Start with a pendulum whose restoring torque is controlled by the scale κ:

from symbolica import *

θ, κ = S("θ", "κ")

V = κ*(1 - θ.cos())
τ = -V.derivative(θ)

τ
-\kappa \sin\!\left(\theta\right)

Expand the torque to get a small-angle model:

τ_small = τ.series(θ, 0, 3)
τ_small
-\kappa\theta+\frac{1}{6}\kappa\theta^3+\mathcal{O}\!\left(\theta^4\right)

Suppose the scale κ and a sensor offset τ_0 are unknown. Each pair (θ_i, τ_i) is one sensor reading: at angle θ_i, the measured torque is τ_i. Convert the truncated series back to an expression, evaluate it at two measurement angles using replace, and solve the resulting linear system:

τ0, τ1, τ2, θ1, θ2 = S("τ_0", "τ_1", "τ_2", "θ_1", "θ_2")

τ_model = τ_small.to_expression() + τ0

solution = Expression.solve([
    τ_model.replace(θ, θ1) - τ1,
    τ_model.replace(θ, θ2) - τ2,
], [κ, τ0])[0]

κ_fit, τ0_fit = solution[κ], solution[τ0]

κ_fit
\frac{6\tau_1-6\tau_2}{-6\theta_1+6\theta_2+\theta_1^3-\theta_2^3}

Finally, plug in measured values:

κ_fit.evaluate({
    θ1: 0.10,
    θ2: 0.20,
    τ1: -0.4697,
    τ2: -0.9545,
}).real
4.905227655986509

Development

Follow the development of Symbolica and the open-source spin-off projects numerica, graphica, and symbolica-integrate on Zulip!

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

Rustarithmeticcomputer-algebraexpansionexpressions

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类后端框架
定价开源

> 相关工具

N
Node.js
基于 V8 的 JavaScript 运行时
D
Django
Python 高级 Web 框架
S
Spring Boot
Java 生态主流微服务框架