gpt4 book ai didi

wolfram-mathematica - 收集 Mathematica 中的常用术语

转载 作者:行者123 更新时间:2023-12-04 08:10:31 25 4
gpt4 key购买 nike

给定一个大表达式,我如何在 Mathematica 中收集变量的各种幂?

例如:

p = (1 + a + x)^4;
Expand[p]
Out: 1 + 4 a + 6 a^2 + 4 a^3 + a^4 + 4 x + 12 a x + 12 a^2 x +
4 a^3 x + 6 x^2 + 12 a x^2 + 6 a^2 x^2 + 4 x^3 + 4 a x^3 + x^4

最佳答案

使用 Collect[expression,variable]。来自help documentation :

In[1]:=Collect[(1 + a + x)^4, x]
Out[1]=(1 + a)^4 + 4 (1 + a)^3 x + 6 (1 + a)^2 x^2 + 4 (1 + a) x^3 + x^4

关于wolfram-mathematica - 收集 Mathematica 中的常用术语,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5429195/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com