ApplySides[f,rel]
等式または不等式 rel の両辺に f を適用する.
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]Piecewiseを使って表現されたいくつかの不等式にSinhを適用する:
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 Language. 2018. "ApplySides." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/ApplySides.html.
APA
Wolfram Language. (2018). ApplySides. Wolfram Language & System Documentation Center. Retrieved from 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: 15-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: 15-August-2026]}