什么是韦达定理计算器?
- 简单解释:François Viète 创建的数学捷径,证明多项式的系数如何严格定义其根的和与积。
- 为什么它在三次方程中很重要:它是一个非常强大的验证工具。如果解方程,将三个根加在一起*必须*等于-b/a。如果没有,那就犯了一个错误!
具有实根和复根的专用三次方程求解器、卡尔达诺方法步骤、三次图形和工作示例。
韦达定理计算器
在上面输入您的多项式系数,然后点击“应用 Vieta 公式”查看结果。Vieta's formulas establish elegant relationships between the roots of a polynomial and its coefficients, without requiring you to solve the equation first. For a cubic ax³ + bx² + cx + d = 0 with roots r&sub1;, r&sub2;, r&sub3;, the formulas state: the sum of roots r&sub1;+r&sub2;+r&sub3; = −b/a, the sum of pairwise products r&sub1;r&sub2;+r&sub1;r&sub3;+r&sub2;r&sub3; = c/a, and the product of all roots r&sub1;r&sub2;r&sub3; = −d/a.
These formulas are named after François Viète (1540–1603), a French mathematician who pioneered using letters for unknowns. The formulas arise naturally from expanding the factored form a(x−r&sub1;)(x−r&sub2;)(x−r&sub3;) and comparing coefficients with the standard form. They work identically whether the roots are real or complex.
Vieta's formulas serve two critical purposes: error checking (verify that your computed roots are consistent with the original coefficients) and indirect computation (compute symmetric functions of the roots without knowing the roots individually). They are foundational in competition mathematics, abstract algebra, and numerical analysis.
After solving a cubic, check that the sum and product of your roots match −b/a and −d/a respectively.
Many olympiad problems ask about symmetric functions of roots without requiring you to find the roots explicitly.
Vieta's formulas help detect numerical instability — if computed roots don't satisfy the formulas, precision is lost.
The sum of roots is NEGATIVE b/a, and the product is NEGATIVE d/a. Missing these minus signs is extremely common.
All formulas require dividing by the leading coefficient a. If a ≠ 1, the raw coefficient is NOT the answer.
Vieta's formulas work identically for complex roots. The sum and product relationships hold universally.
| Sum of Roots | r&sub1;+r&sub2;+r&sub3; = −b/a |
| Pairwise Products | r&sub1;r&sub2;+r&sub1;r&sub3;+r&sub2;r&sub3; = c/a |
| Product of Roots | r&sub1;·r&sub2;·r&sub3; = −d/a |
| Named After | François Viète (1540–1603) |
| Works With | Both real and complex roots |
是的!即使根涉及虚数,维埃塔规则也完全适用。复杂的部分在添加过程中简单地相互抵消。
不,它只是告诉您它们作为一个完整的集合如何相互关联。
因为 Vieta 的公式本质上依赖于首先对多项式进行归一化(使首项系数为 1)。
您可以验证根之和等于 -b/a,两两乘积之和等于 c/a,所有根的乘积等于 -d/a。它是一个强大的错误检查工具。
弗朗索瓦·维埃特 (François Viète) 是一位 16 世纪的法国数学家,他率先使用字母来表示未知数。他将根与系数联系起来的公式仍然是代数的基石。