Recently a new method for solving the quaratic equation was outlined1. Here is my attempt to make a (naive) comparison between the two methods.

Method: Completing the square

\[ax^2+bx+c=0\]

\[x^2+\frac{b}{a}x+\frac{c}{a}=0\]

\[x^2+\frac{b}{a}x=-\frac{c}{a}\] \[x^2+2(x)(\frac{b}{2a})+(\frac{b}{2a})^2=-\frac{c}{a}+(\frac{b}{2a})^2\] \[(x+\frac{b}{2a})^2=-\frac{c}{a}+\frac{b^2}{4a^2}=\frac{b^2-4ac}{4a^2}\] \[x+\frac{b}{2a}=\frac{\pm \sqrt{b^2-4ac}}{2a}\] \[x=-\frac{b}{2a}\pm \frac{ \sqrt{b^2-4ac}}{2a}\]

Method: Introducing z

\[ax^2+bx+c=0\]

\[x^2+\frac{b}{a}x+\frac{c}{a}=0\] Let the two roots be \(R\) and \(S\). So,

\[(x-R)(x-S)=x^2-(R+S)x+RS=x^2+\frac{b}{a}x+\frac{c}{a}\] Equating the coefficients of \(x\),

\(R+S=\frac{-b}{a}\)

So, the mean of \(R\) and \(S\) is \(\frac{-b}{2a}\)

Now, two numbers have equal distance from their mean with different signs. So \(R\) and \(S\) have equal absolute distance from \(\frac{-b}{2a}\). Let one distance be \(z\). So the other distance is \(-z\). So, \(R\) and \(S\) can be written as:

\[\frac{-b}{2a}\pm z\] Now, we need to get the value of \(z\).

Equating the products of two roots:

\[RS=(\frac{-b}{2a}+ z)(\frac{-b}{2a}- z)=\frac{c}{a}\] \[\frac{b^2}{4a^2}-z^2=\frac{c}{a}\] \[z^2=\frac{b^2}{4a^2}-\frac{c}{a}=\frac{b^2-4ac}{4a^2}\] \[z=\pm\frac{\sqrt{b^2-4ac}}{2a}\] Plugging the value of \(z\), the roots are:

\[\frac{-b}{2a}\pm\frac{\sqrt{b^2-4ac}}{2a}\]

Comments


  1. https://www.technologyreview.com/s/614775/a-new-way-to-make-quadratic-equations-easy/