什么是有理根定理計算機?
- 簡単な説明:多項式に「適切な」分数根または整数根がある場合、その根は定数項の因数を先頭の係数の因数で割ることによって形成されなければならないという数学的規則。
- 3 次方程式で重要な理由:このルールがなければ、3 次方程式の最初の根を手作業で見つけることは、まったくの運任せのゲームになります。これにより、無限の可能性がテスト可能な小さなメニューに絞り込まれます。
実根および複素根を備えた専用の三次方程式ソルバー、Cardano メソッドのステップ、三次グラフ作成、および実際の例。
有理根定理計算機
上に多項式係数を入力し、「有理根候補を見つける」をクリックして結果を表示します。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.
The theorem is always the first tool applied when solving cubics with integer coefficients — before Cardano or numerical methods.
Most algebra and precalculus exams feature problems solvable by the Rational Root Theorem, making it essential test knowledge.
Computer algebra systems use the Rational Root Theorem as the initial step in their polynomial factorization algorithms.
Every candidate ±p/q has both positive and negative versions. Testing only positives misses negative roots.
Candidates like 2/4 and 1/2 are the same root. Reduce fractions to avoid redundant testing.
p divides the CONSTANT term d, and q divides the LEADING coefficient a. Swapping them generates wrong candidates.
| Rule | p divides d, q divides a |
| Candidate Form | ±p/q (all combinations) |
| Testing Method | Substitute or synthetic division |
| Limitation | Only finds rational roots, not irrational |
| After Finding Root | Use synthetic division to reduce degree |
いいえ、*候補者*の「候補リスト」が提供されるだけです。どれがゼロに等しいかをテストする必要があります。
つまり、方程式には無理数根 (乱雑な小数または平方根) があり、カルダノのような高度な公式を使用して解く必要があります。
いいえ、定理は驚くべきことに主項と定数項のみに依存しています。
候補の数は、先頭の係数と定数項がいくつの因数を持つかによって異なります。多くの要素を含む数値が大きくなると、候補リストが長くなります。
いいえ。有理根定理は、潜在的な有理根 (整数または分数) を特定するだけです。 √2 のような無理数根には他の方法が必要です。