Ajusta el coeficiente principal y las coordenadas del vértice para hacer que la parábola azul coincida con la parábola anaranjada.
¿Cómo afectan estos números a la forma y posición de una parábola?
graphInit({range:10,scale:20,tickStep:1,axisArrows:"<->"}),style({stroke:"#FFA500",fill:"none",clipRect:[[-10,-10],[20,20]],arrows:null}),plot(new Parabola(A,X1,Y1).graphieFunction,[-10,10]),style({stroke:"#6495ED",strokeWidth:3,fill:"none",clipRect:[[-10,-10],[20,20]],arrows:null}),graph.currParabola=new Parabola(1,0,0),graph.currParabola.plot()
[A, X1, Y1]
var e=graph.currParabola;return e.getLeadingCoefficient()===A&&e.getVertexX()===X1&&e.getVertexY()===Y1
guess=guess.length?guess:[1,0,0];var parab=graph.currParabola;parab.update.apply(parab,guess),redrawParabola(!1)
guess=guess.length?guess:[1,0,0];var a=guess[0],x=guess[1],y=guess[2],equation="y - "+y+"="+a+"(x - "+x+")^{2}";equation=cleanMath(equation),$("#equation-label").html("<code>"+equation+"</code>").tex()