Cubic Equation Solver logo
Cubic Equation Solver

有理根定理計算機

実根および複素根を備えた専用の三次方程式ソルバー、Cardano メソッドのステップ、三次グラフ作成、および実際の例。

有理根定理計算機

整数係数を入力して、±p/q 定理を使用して考えられるすべての有理根の候補を生成します。

整数係数 — ax³ + bx² + cx + d = 0

有理根定理計算機

上に多項式係数を入力し、「有理根候補を見つける」をクリックして結果を表示します。
解くとグラフがここに表示されます。

什么是有理根定理計算機?

  • 簡単な説明:多項式に「適切な」分数根または整数根がある場合、その根は定数項の因数を先頭の係数の因数で割ることによって形成されなければならないという数学的規則。
  • 3 次方程式で重要な理由:このルールがなければ、3 次方程式の最初の根を手作業で見つけることは、まったくの運任せのゲームになります。これにより、無限の可能性がテスト可能な小さなメニューに絞り込まれます。
公式 / 方法
  • 式:考えられるルーツ\pm \frac{p}{q}
  • 変数の説明: * p: 定数項のすべての整数因数d(末尾の数字)。 *q: 先頭の係数のすべての整数因数ある(に付いている番号はx3).

使い方

  1. 3 次の係数が整数 (小数を含まない) であることを確認してください。
  2. 最初の係数を入力しますあるそして最後の学期d.
  3. 「有理根を見つける」を押します。
  4. 生成されたすべての潜在的なテスト候補者のリストを確認します。

主な特徴

  • 可能な組み合わせを即座に絞り込みます。
  • 特定の素数チャンクの因数分解に関連する数学的エラーを削除します。
  • 出力を最も単純な整数から複雑な分数までソートします。
  • 除算タスクを実行する前の完璧なガイド。
📈 視覚的図
有理根定理: p/q 候補 d(定数)の因数 ±1, ±2, ±3, ±4, ±6, ±12 a の因数 (先行) ±1, ±2 候補者: ±1, ±2, ±3, ±4, ±6, ±12, ±½, ±3/2

例の概念

のために2x3 - 5x2 - 4x + 3 = 0: 要因3(p): 1、3. の要因2(問): 1、2。 ツールは次の組み合わせを出力します。\pm 1、\pm 3、\pm 1/2、\pm 3/2.

対話型ディープダイブ

The Rational Root Theorem provides a systematic way to find all possible rational roots of a polynomial with integer coefficients. For a cubic ax³ + bx² + cx + d = 0, any rational root p/q must satisfy: p divides d (the constant term) and q divides a (the leading coefficient). This generates a finite list of candidates to test.

The theorem does NOT guarantee that rational roots exist — it only narrows the search space. You must test each candidate by substituting it into the polynomial (or using synthetic division). If f(p/q) = 0, you have found a root. Once one root is confirmed, synthetic division reduces the cubic to a quadratic, which the quadratic formula solves completely.

The power of this theorem lies in its efficiency: instead of guessing randomly, you have a guaranteed finite list. For example, if a = 2 and d = 12, the candidates are ±1, ±2, ±3, ±4, ±6, ±12, ±1/2, ±3/2 — at most 16 values to check. This structured approach is the standard first step in polynomial solving before resorting to Cardano's method.

🎯 実世界での応用
🔎

First-Line Root Finding

The theorem is always the first tool applied when solving cubics with integer coefficients — before Cardano or numerical methods.

🎓

Exam Preparation

Most algebra and precalculus exams feature problems solvable by the Rational Root Theorem, making it essential test knowledge.

💻

Algorithm Design

Computer algebra systems use the Rational Root Theorem as the initial step in their polynomial factorization algorithms.

⚠ 避けるべきよくある間違い

1. Forgetting negative candidates

Every candidate ±p/q has both positive and negative versions. Testing only positives misses negative roots.

2. Not reducing fractions

Candidates like 2/4 and 1/2 are the same root. Reduce fractions to avoid redundant testing.

3. Confusing which divides which

p divides the CONSTANT term d, and q divides the LEADING coefficient a. Swapping them generates wrong candidates.

📋 クイックリファレンス表
Rulep divides d, q divides a
Candidate Form±p/q (all combinations)
Testing MethodSubstitute or synthetic division
LimitationOnly finds rational roots, not irrational
After Finding RootUse synthetic division to reduce degree

よくある質問

これで実際のルートがわかりますか?

いいえ、*候補者*の「候補リスト」が提供されるだけです。どれがゼロに等しいかをテストする必要があります。

リスト上のどの数字も機能しない場合はどうすればよいですか?

つまり、方程式には無理数根 (乱雑な小数または平方根) があり、カルダノのような高度な公式を使用して解く必要があります。

中間タームに入る必要がありますか?

いいえ、定理は驚くべきことに主項と定数項のみに依存しています。

リストに多くの候補が含まれる場合があるのはなぜですか?

候補の数は、先頭の係数と定数項がいくつの因数を持つかによって異なります。多くの要素を含む数値が大きくなると、候補リストが長くなります。

この定理は無理数の根を見つけることができるでしょうか?

いいえ。有理根定理は、潜在的な有理根 (整数または分数) を特定するだけです。 √2 のような無理数根には他の方法が必要です。