计算机代数软件,用于最小化一组多项式中的运算次数
我有多项式系统,相当简单的多项式表达式,但相当长 优化我的手牌。表达式按集合分组,在给定的集合中,多个变量中有共同的术语。
我想知道是否有一个计算机代数系统,例如 Mathematica、Matlab 或 sympy,可以优化多个具有常用项的多项式,以最大程度地减少运算次数。如果这样的系统能够最大限度地减少中间项的数量以减少寄存器的数量,那就太好了。
如果这样的系统不存在,我将使用 Python 符号代数 Sympy 自己做一个。如果您正在开发此类软件包或有兴趣开发或使用此类软件包,请告诉我。
这是一个虚构的示例
x0 = ((t - q*A)*x + B)*y
y0 = ((t - q*A)*y + B)*z
z0 = ((t - q*A)*z + B)*x
,因此您显然可以因式分解 (t - qA) 项。现在,如果您使用常见术语的各种组合来使术语数量非常大,那么用手来完成就变得很困难。我的方程涉及多达 40 个项,集合的大小约为 20 个。希望有帮助,
谢谢
I have systems of polynomials, fairly simple polynomial expressions but rather long
to optimize my hand. Expressions are grouped in sets, and in a given set there are common terms in several variables.
I would like to know if there is a computer algebra system, such as Mathematica, Matlab, or sympy, which can optimize multiple polynomials with common terms to minimize number of operations. It would be also great if such system can minimize the number of intermediate terms to reduce number of registers.
If such system is not existing, I am going to do my own, using Python symbolic algebra Sympy. If you are working on such package or are interested in developing or using one, please let me know.
here is a made-up example
x0 = ((t - q*A)*x + B)*y
y0 = ((t - q*A)*y + B)*z
z0 = ((t - q*A)*z + B)*x
so you can obviously factor the (t - qA) term. Now if you make number of terms very large with various combinations of common terms it becomes difficult to do by hand. The equations I have involve up to 40 terms and the size of set is around 20. Hope that helps
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
sympy 是您要找的吗?我确实相信它支持多项式,尽管我不知道它是否支持您可能想要的所有功能(不过,调整它以添加您认为它可能缺少的功能必须比从头开始编写自己的功能更容易;-) 。
Is sympy what you're looking for? I do believe it has support for polynomials although I don't know if it supports all the features you may desire (still, tweaking it to add what you think it might be missing has to be easier than writing your own from scratch;-).
您考虑过Maxima吗?
它是一个令人印象深刻的符号计算包,是免费的、开源的,并且拥有强大而活跃的社区,可以在处理非显而易见的公式时提供宝贵的帮助。它适用于所有三个主要操作系统,并且具有预编译的 Windows 二进制文件。
您有多种可用于表达式和方程组(例如您的方程组)的代数操作命令:expand、factor、simple、ratsimp、linsolve 等。
此页面 (Maxima for Symbolic Computation)应该可以帮助您入门 - 下载、安装、一些示例,然后指出其他资源来指导您,包括快速命令参考/备忘单,以及一些编写您自己的脚本的指南。
Have you considered Maxima?
It is an impressive symbolical computation package that is free, open source, and has a strong and active community that provides valuable assistance when dealing with non-obvious formulations. It is readily availability for all three major operating systems, and has a precompiled Windows binary.
You have a variety of algebraic manipulation commands available for expressions and for systems of equations (such as yours): expand, factor, simplify, ratsimp, linsolve, etc.
This page (Maxima for Symbolic Computation)should get you started — downloading, installing, a few examples, and then pointing out additional resources to guide you on your way, including a quick command reference / cheat sheet, and some guidlines for writing your own scripts.
Mathematica 当然可以对多项式方程组(例如您的方程组)进行各种变换,其中一些变换可能是为了减少项数。这对于您来说是否是正确的答案还有待商榷,因为您似乎没有可用的副本。我预计 Maple 和大多数其他 CAS 也是如此。
但你提到的
表明您实际上正在尝试为编译进行一些数据流分析。您可能还想查看有关该主题的文献。其中一些文献确实提到了表达式的类似计算机代数的变换。
Well Mathematica can certainly do all sorts of transformations on sets of polynomial equations such as yours, and some of those transformations could be to reduce the number of terms. Whether that is the right answer for you is open to question, as you don't seem to have a copy available. I expect that the same is true for Maple and for most of the other CAS out there.
But your mention of
suggests that you are actually trying to do some data-flow analysis for compilation. You might want to look at the literature on that topic too. Some of that literature does indeed refer to computer-algebra-like transformations on expressions.
我迟到了,但无论如何,Maxima 中有一个优化函数(https:// /maxima.sourceforge.io),它标识常见的子表达式并发出可以评估的代码块。对于问题陈述中显示的示例,我得到:
如您所见,
t - A*q
被拉出并分配给虚构变量%1
(百分号是 Maxima 中允许的符号字符),然后将其重新用于计算其他结果。<代码>?在输入提示处优化显示了一些有关它的文档。
I'm late to the party, but anyway there is a function
optimize
in Maxima (https://maxima.sourceforge.io) which identifies common subexpressions and emits a blob of code which can be evaluated. For the example shown in the problem statement, I get:As you can see,
t - A*q
was pulled out and assigned to a made-up variable%1
(percent sign being an allowed character for symbols in Maxima) which is then reused to compute other results.? optimize
at the input prompt shows some documentation about it.