DivideSides[rel,x]
等式または不等式 rel の各辺を x で割る.
DivideSides[rel1,rel2]
2つの等式または不等式の対応する辺を割る.
DivideSides[rel]
rel の各辺を右辺で割り,右辺を1にする.
DivideSides
DivideSides[rel,x]
等式または不等式 rel の各辺を x で割る.
DivideSides[rel1,rel2]
2つの等式または不等式の対応する辺を割る.
DivideSides[rel]
rel の各辺を右辺で割り,右辺を1にする.
詳細とオプション
- 関係 rel は以下のいずれでもよい.
-
lhs==rhs 等しい lhs!=rhs 等しくない lhs>rhs または lhs>=rhs 不等式 ab>c≥… 一般化された不等式 - 次は,使用可能なオプションである.
-
Assumptions $Assumptions パラメータについての仮定 GenerateConditions All パラメータについての条件を生成するかどうか TimeConstraint 30 条件を簡約するために使える時間 - 次は,GenerateConditionsの可能な設定である.
-
All Piecewiseを使って可能なすべての答を返す Automatic 条件が一般的に満足されない場合にのみ,その条件を返す True 必要な任意の条件を返す False どの必要な条件も返さない None 条件が必要な場合は未評価で返す
例題
すべて開く すべて閉じる例 (4)
スコープ (6)
DivideSides[(Sin[a]/a) == (Sin[b]/b) == (Sin[c]/c)]DivideSides[a ≠ b, c == d]DivideSides[y > m x + b, z == 7]DivideSides[a == b > -5 > c, -5]Piecewiseを使って表現された関係を
で割る:
DivideSides[Piecewise[{{x^2 == a*x + b, a > 1}, {x^2 <= a*x + b, True}}], a]ConditionalExpression内の等式の両辺を右辺で割る:
DivideSides[ConditionalExpression[(a/c) == (b/d), c ≠ 0]]オプション (3)
Assumptions (1)
GenerateConditions (2)
デフォルト設定のGenerateConditions->Allでは,必要な場合にはPiecewise式が生成される:
DivideSides[a b > c, b]GenerateConditions->Trueは,必要とされる条件とともに有効な結果を返す:
DivideSides[ a b > c, b, GenerateConditions -> True]GenerateConditionsFalseは,必要とされる条件なしに有効な結果を返す:
DivideSides[a b > c, b, GenerateConditions -> False]GenerateConditionsNoneは,条件が必要な場合には失敗する:
DivideSides[a / b > c, b, GenerateConditions -> None]GenerateConditions->Automaticは,一般的には満足されない条件を返す:
DivideSides[a x > b, GenerateConditions -> Automatic]DivideSides[a x == b, GenerateConditions -> Automatic]DivideSides[a x == b, GenerateConditions -> True]アプリケーション (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]特性と関係 (5)
DivideSides[True, a]DivideSides[1 == 0, a]DivideSidesは,等式を等価の等式に変換する:
DivideSides[3x == 15, 3]Solveは,等式が真となる変数の値を与える:
Solve[3x == 15, x]Reduceを使って等式を var==value の形に書き換えることができる:
Reduce[3x == 15, x]SimplifyはDivideSidesの機能を併せ持つ:
Simplify[2x == 2a b + 4b]DivideSides[2x == 2a b + 4b, 2]Expandを使って等式の各辺の項を簡約する:
DivideSides[3x == 15 - 21y, 3]%//ExpandDivideSides[eq,x]はMultiplySides[eq,x]の逆である:
DivideSides[2x == 24 - 4y, 2]MultiplySides[x == (1/2) (24 - 4 y), 2]関連するガイド
-
▪
- 方程式の操作 ▪
- 式の操作 ▪
- 中学・高校における教育
テキスト
Wolfram Research (2018), DivideSides, Wolfram言語関数, https://reference.wolfram.com/language/ref/DivideSides.html.
CMS
Wolfram Language. 2018. "DivideSides." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/DivideSides.html.
APA
Wolfram Language. (2018). DivideSides. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/DivideSides.html
BibTeX
@misc{reference.wolfram_2026_dividesides, author="Wolfram Research", title="{DivideSides}", year="2018", howpublished="\url{https://reference.wolfram.com/language/ref/DivideSides.html}", note=[Accessed: 07-September-2026]}
BibLaTeX
@online{reference.wolfram_2026_dividesides, organization={Wolfram Research}, title={DivideSides}, year={2018}, url={https://reference.wolfram.com/language/ref/DivideSides.html}, note=[Accessed: 07-September-2026]}