Scientific Calculator

(public) Tomatoes999/Vertex

By Tomatoes999 Tomato Master

The vertex of a quadratic when ax^2+bx+c=0.

Tagged: aops quadratic

vertex=function(a,b,c){
  var answerx=(-b/(2*a));
  var answery=(a*answerx^2+b*answerx+c);
  [answerx,answery];
}

spam? | offensive?

0 Comments

Sign in to leave a comment