Cubic Equation Solver logo
Cubic Equation Solver

組み立て除法計算機

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

組み立て除法計算機

Enter (x − r) による高速合成除算を実行するには、3 次の係数と除数値 r を指定します。

配当多項式 — ax³ + bx² + cx + d = 0

組み立て除法計算機

上に多項式係数を入力し、「合成除算を実行」をクリックして結果を表示します。
解くとグラフがここに表示されます。

什么是組み立て除法計算機?

  • 簡単な説明:これは、係数のみを使用して多項式を除算し、変数を完全に削除する簡単な方法です (×'s) 計算中。
  • 3 次方程式で重要な理由:3 次方程式の 1 つの根を推測または見つけたら、合成除算を使用して方程式を標準の 2 次方程式に切り詰めます。これは解くのが簡単です。
公式 / 方法
  • 方法:係数行を書き留めます[a、b、c、d]。推定された根を乗算するrカスケード合計で計算し、次の列に追加します。
  • 変数の説明:* 行の最後の番号は残り。 0の場合は、r根です。 * 残りの数値は新しい二次方程式を形成しますax² + bx + c.

使い方

  1. 除算する多項式の係数を入力します。
  2. 除数のルート値を入力してくださいrテストしたいと考えています。
  3. 「割り算を計算」をクリックします。
  4. 商と余りを表す生成された最終行を確認します。

主な特徴

  • クリーンで伝統的な表形式のグリッド出力は教科書に完全に一致します。
  • 非常に高速な計算テスト。
  • 残りを明確に強調表示します。
  • 分数と負のルートの除算をシームレスにサポートします。
📈 視覚的図
合成除算: (x3 - 4x2 + x + 6) ÷ (x - 2) 2 1 −4 1 6 2 −4 −6 1 −2 −3 0 商: x² - 2x - 3 |剰余: 0 (つまり、x=2 はルートです!)

例の概念

分けるx3 - 4x2 + x + 6根によって2。 計算機は次のようにカスケードされます。1、 それから-4 + 2(1) = -2、 それから1 + 2(-2) = -3、 それから6 + 2(-3) = 0。 商はx² - 2x - 3余りは0です。

対話型ディープダイブ

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.

🎯 実世界での応用
🔎

Root Testing

Quickly test whether a candidate value is a root by checking if the remainder is zero — much faster than substitution.

📝

Polynomial Reduction

After finding one root, synthetic division reduces the cubic to a quadratic, enabling immediate use of the quadratic formula.

🎓

Homework Efficiency

Students can verify factoring homework in seconds using the compact synthetic division format.

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

1. Using the wrong sign for c

When dividing by (x + 3), the divisor value is −3, not +3. The sign convention often trips students up.

2. Forgetting zero placeholders

If a power is missing (e.g., no x² term), you MUST insert a 0 coefficient for that position.

3. Applying to non-linear divisors

Synthetic division only works for linear divisors (x − c). For quadratic or higher divisors, use polynomial long division.

📋 クイックリファレンス表
Divisor Form(x − c) only
Remainder = 0c is a root, (x−c) is a factor
Remainder ≠ 0Remainder equals f(c)
Speed~3× faster than polynomial long division
OutputQuotient polynomial + remainder

よくある質問

このツールを使用して 3 次を 2 次で割ることはできますか?

いいえ、標準的な合成除算は、次の形式の線形二項による除算にのみ完全に機能します。<span class="font-mono text-primary-700 bg-primary-50 px-1 rounded">× - c</span>.

不足しているべき乗を 0 として書きますか?

はい。あなたのキュービックが<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>.

合成除算は長い除算とどう違うのですか?

合成除算は、すべての変数を削除し、係数のみを扱うショートカットです。線形除数の場合は高速でエラーが発生しにくくなりますが、長除算はどのような次数の除数でも処理できます。

数値が根であるかどうかをテストするために合成除算を使用できますか?

はい!合成除算後の剰余がゼロの場合、テストした数値は確かに多項式の根です。