Skip to content

Comment on A new way to make quadratic equations easy

Comments

This kind of approach is familiar to me from competition math. Back in middle school math club we were taught this exact approach (under the name of "Vieta's formulas"), i.e. that thinking about the sum and product of the roots could be faster in some cases. Po-Shen Loh is the director of the US IMO team, so it makes sense he would like this approach.

However, I don't think it makes logical sense to teach it only this way. Here you start by assuming that a quadratic has two roots, which is not at all obvious the first time a kid sees a quadratic equation. (Especially because those roots can be complex numbers!) Completing the square tells you why there are two roots, and also naturally leads you to the necessity of complex numbers, i.e. when the "square" you end up making is negative. You can use the nice Vieta's formula tricks only after establishing that.

I am also familiar with Vieta from math competitions but I think this is more than that.

Given two numbers, r1 and r2, if you know their arithmetic mean:

  m = (r1 + r2) / 2
and geometric mean:
  g = sqrt(r1 * r2)
then following Loh's derivation you get a very cute formula:
  r1 = m - sqrt(m^2 - g^2)

  r2 = m + sqrt(m^2 - g^2)
Vieta gives an easy way of finding those means from a quadratic equation: r1+r2=-b and r1*r2=c. So you can plug in m=-b/2 and g=sqrt(c) in the equation above.

The fact that you can state roots in terms of their means is the more novel insight to me. (note: Loh doesn't talk about geometric means but I thought using just product of the roots isn't as "symmetric")

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.