- explain quadratic relations y=ax +bx+c
- solve simultaneous with x squared
- simultanius equations
- rules for solving quadratics with x greater than 1
- rule of quadratic graph
- multiplying out quadratics
- easy way to explain quadratics
- solve for the maximum of quadratic equation
- quadratics questions
- easy way to form a quadratic equation by simultaneous equations
- y-intercepts quadratic equations
- quadratic equation 28question29
- fx3650p formula
- iphone equation solver
- graphing hyperbolic paraboloid on ti-89
- using the quadradic formula o solve quadratic equation
- solving quadratic equations by graphs
- how to solve quadratic equations math
- les equations quadratic
- equation solvers show work
|
Quadratic Functions Vertex Solver
Solving Quadratic Equations
<%dim a,b,c,d,e,f,x,ya=request.form("a")b=request.form("b")c=request.form("c")d=request.form("d")e=request.form("e")f=request.form("f")if a=d and b=e and c=f thenresponse.write("Your two equations were the same, they must be different!")ElseResponse.write("Your two equations were: ")response.write(a & "x + " & b & "y = " & c & " ")response.write(d & "x + " & e & "y = " & f & " ")b=b/ac=c/ae=e/df=f/dy=(c-f)/(b-e)x=(c-b*y)response.write("x is: " & x)response.write(" y is: " & y)response.write(" Click here to try another")end if%>
|