从大表达式中提取与模式匹配的表达式

发布于 2024-11-01 20:25:07 字数 276 浏览 1 评论 0原文

我有一个包含单个平方根的 Mathematica 表达式,示意性地

expr = a / (b + Sqrt[c]);

其中 abc 是大型表达式。我想提取 sqrt 下的表达式,例如通过匹配模式,例如

Match[expr,Sqrt[x_]] // should return c

是否有一种简单的方法可以做到这一点?

I have a Mathematica expression that contains a single square root, schematically

expr = a / (b + Sqrt[c]);

where a,b,c are large expressions. I would like to extract the expression under the sqrt, for instance by matching to a pattern, something like

Match[expr,Sqrt[x_]] // should return c

Is there an easy way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

甜心小果奶 2024-11-08 20:25:07

理论上,这应该可以正常工作:

extractSqrt = Cases[ToBoxes@#, SqrtBox@x_ :> ToExpression@x, Infinity] &;

extractSqrt[expr]

Theoretically, this should work correctly:

extractSqrt = Cases[ToBoxes@#, SqrtBox@x_ :> ToExpression@x, Infinity] &;

extractSqrt[expr]
魔法少女 2024-11-08 20:25:07

如果您愿意将赋值更改为 expr,可以执行以下操作:

expr = Hold[a / (b + Sqrt[c])];

Cases[expr, HoldPattern @ Sqrt[x_] :> x, Infinity]

赋值语句中的 Hold 会阻止 Mathematica 对表达式应用任何简化。在本例中,Sqrt[c] 被“简化”为 Power[c,Rational[1,2]]

HoldPatternCases 表达式中至关重要,可以防止匹配的模式发生同样的简化。

If you are willing to change the assignment to expr, you can do this:

expr = Hold[a / (b + Sqrt[c])];

Cases[expr, HoldPattern @ Sqrt[x_] :> x, Infinity]

The Hold in the assignment statement prevents Mathematica from applying any simplifications to the expression. In this case, Sqrt[c] gets "simplified" into Power[c,Rational[1,2]].

The HoldPattern is essential in the Cases expression to prevent the same simplification from happening to the pattern being matched.

蹲在坟头点根烟 2024-11-08 20:25:07

我等待一些示例,但同时尝试一下:

Cases[expr, x_^(1/2 | -1/2) :> x, Infinity]

Sqrt(x) 的标准内部形式是 Power[x, 1/2]。

I await a few examples, but in the meantime, try:

Cases[expr, x_^(1/2 | -1/2) :> x, Infinity]

The standard internal form for Sqrt(x) is Power[x, 1/2].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文