Solving cubic polynomials: Difference between revisions

From ASCEND
Jump to navigation Jump to search
Created page with "There are many sources for how to solve cubic polynomials, but a summary is helpful when implementing a new code. This page is an attempt to record that. We will consider the..."
 
No edit summary
Line 4: Line 4:


<math> x^3 + a x^2 + b x + c = 0 </math>
<math> x^3 + a x^2 + b x + c = 0 </math>
[[Category:Miscellany]]

Revision as of 01:32, 30 June 2022

There are many sources for how to solve cubic polynomials, but a summary is helpful when implementing a new code. This page is an attempt to record that.

We will consider the polynomial

<math> x^3 + a x^2 + b x + c = 0 </math>