Error in Mathbook > Quadratic Equation

Issue #228 duplicate
Former user created an issue

Originally reported on Google Code with ID 228 ``` x1 = (-b + sqrt(b^2 - 4*a*c)) / 2*a x1 = (-b - sqrt(b^2 - 4*a*c)) / 2*a

these two formulas are false; the term under the fraction bar must be in brackets:

x1 = (-b + sqrt(b^2 - 4*a*c)) / ( 2*a ) x1 = (-b - sqrt(b^2 - 4*a*c)) / ( 2*a )

otherwise the result is false... ```

Reported by `jschoett` on 2008-12-18 11:58:25

Comments (2)

  1. Former user Account Deleted

    ``` Hi. Thanks for reporting, but this has been reported before (and fixed). See issue 197. ```

    Reported by `helder.pereira.correia` on 2008-12-18 13:37:24 - Status changed: `Duplicate`

  2. Former user Account Deleted

    ``` ok, sorry I'm looking forward to the next release! ```

    Reported by `jschoett` on 2008-12-18 14:07:05

  3. Log in to comment