ApplySides
ApplySides[f,rel]
对方程或不等式 rel 的两边应用 f.
更多信息
- 关系式 rel 可以为以下任意形式:
-
lhs==rhs 方程 lhs!=rhs 不等式方程式 lhs>rhs 或 lhs>=rhs 不等式 ab>c≥… 广义不等式 - ApplySides 在应用函数后,不验证不等式是否依然成立.
范例
打开所有单元 关闭所有单元基本范例 (2)
范围 (6)
ApplySides[Log, a == b^2 == c^3]ApplySides[CubeRoot, a == b > -8 > c]对不等方程式的两侧应用 Factorial:
ApplySides[Factorial, n ≠ 5]ApplySides[# ^ 4&, a == I b]ApplySides[Sinh, Piecewise[{{x^2 > c/a + (b*x)/a, a > 0}, {x^2 < c/a + (b*x)/a, a < 0}}, a*x^2 > c + b*x]]计算 ConditionalExpression 里方程的两侧的常用对数:
ApplySides[Log10, ConditionalExpression[(a/c) == (b/d), c ≠ 0]]应用 (1)
quadratic = a x^2 + b x + c == 0MultiplySides[quadratic, 4a, Assumptions -> a ≠ 0]//ExpandAddSides[%, b^2 - 4a c]Factor[%]ApplySides[Sqrt, %]PowerExpand[%]SubtractSides[%, b]DivideSides[%, 2a, Assumptions -> a ≠ 0]属性和关系 (2)
ApplySides[Sin, True]ApplySides[Cos, 1 == 0]ApplySides 把方程转换为相关的方程:
ApplySides[Exp, Log[x] == 5]Solve 给出变量的使方程成立的值:
Solve[Log[x] == 5, x]Reduce 可用来把方程改写为 var==value 形式:
Reduce[Log[x] == 5, x]可能存在的问题 (1)
ApplySides 是纯结构运算,不检查数学上的一致性:
ApplySides[Sin, x > c]{x > c, Sin[x] > Sin[c]} /. {x -> 3Pi / 2, c -> Pi / 2}文本
Wolfram Research (2018),ApplySides,Wolfram 语言函数,https://reference.wolfram.com/language/ref/ApplySides.html.
CMS
Wolfram 语言. 2018. "ApplySides." Wolfram 语言与系统参考资料中心. Wolfram Research. https://reference.wolfram.com/language/ref/ApplySides.html.
APA
Wolfram 语言. (2018). ApplySides. Wolfram 语言与系统参考资料中心. 追溯自 https://reference.wolfram.com/language/ref/ApplySides.html 年
BibTeX
@misc{reference.wolfram_2026_applysides, author="Wolfram Research", title="{ApplySides}", year="2018", howpublished="\url{https://reference.wolfram.com/language/ref/ApplySides.html}", note=[Accessed: 18-August-2026]}
BibLaTeX
@online{reference.wolfram_2026_applysides, organization={Wolfram Research}, title={ApplySides}, year={2018}, url={https://reference.wolfram.com/language/ref/ApplySides.html}, note=[Accessed: 18-August-2026]}