什么是組み立て除法計算機?
- 簡単な説明:これは、係数のみを使用して多項式を除算し、変数を完全に削除する簡単な方法です (×'s) 計算中。
- 3 次方程式で重要な理由:3 次方程式の 1 つの根を推測または見つけたら、合成除算を使用して方程式を標準の 2 次方程式に切り詰めます。これは解くのが簡単です。
実根および複素根を備えた専用の三次方程式ソルバー、Cardano メソッドのステップ、三次グラフ作成、および実際の例。
組み立て除法計算機
上に多項式係数を入力し、「合成除算を実行」をクリックして結果を表示します。Synthetic division is a streamlined algorithm for dividing a polynomial by a linear factor of the form (x − c). Instead of writing out full polynomial long division with variables and exponents, synthetic division uses only the coefficients arranged in a compact table, making it dramatically faster and less error-prone.
The process works by “cascading” multiplications and additions: bring down the leading coefficient, multiply by c, add to the next coefficient, multiply by c again, and repeat. The final number in the row is the remainder. If the remainder is zero, then c is a root and (x−c) is a factor. The remaining numbers form the quotient polynomial of one degree less.
Synthetic division serves dual purposes: division (finding the quotient when you know a factor) and evaluation (the remainder equals f(c) by the Remainder Theorem). This duality makes it an essential tool in the systematic root-finding process for cubics and higher-degree polynomials.
Quickly test whether a candidate value is a root by checking if the remainder is zero — much faster than substitution.
After finding one root, synthetic division reduces the cubic to a quadratic, enabling immediate use of the quadratic formula.
Students can verify factoring homework in seconds using the compact synthetic division format.
When dividing by (x + 3), the divisor value is −3, not +3. The sign convention often trips students up.
If a power is missing (e.g., no x² term), you MUST insert a 0 coefficient for that position.
Synthetic division only works for linear divisors (x − c). For quadratic or higher divisors, use polynomial long division.
| Divisor Form | (x − c) only |
| Remainder = 0 | c is a root, (x−c) is a factor |
| Remainder ≠ 0 | Remainder equals f(c) |
| Speed | ~3× faster than polynomial long division |
| Output | Quotient polynomial + remainder |
いいえ、標準的な合成除算は、次の形式の線形二項による除算にのみ完全に機能します。<span class="font-mono text-primary-700 bg-primary-50 px-1 rounded">× - c</span>.
はい。あなたのキュービックが<span class="font-mono text-primary-700 bg-primary-50 px-1 rounded">x3 - 7x + 6</span>を治療する必要があります。<span class="font-mono text-primary-700 bg-primary-50 px-1 rounded">x²</span>ツールは入力されたゼロを自動的に処理します。
この場合、テストした数値は根ではありませんが、余りが数学的に評価を表します<span class="font-mono text-primary-700 bg-primary-50 px-1 rounded">f(r)</span>.
合成除算は、すべての変数を削除し、係数のみを扱うショートカットです。線形除数の場合は高速でエラーが発生しにくくなりますが、長除算はどのような次数の除数でも処理できます。
はい!合成除算後の剰余がゼロの場合、テストした数値は確かに多項式の根です。