Quadratic Formula

What's the trouble?
6x^2=21x+27
6x^2-21x-27=0
Even without using the formula
(x+1)(6x-27) works.
Code:
  21+or-sqrt(21^2+4*6*27)
  ---------------------------
           12
 
Top