- solve my vertex
- simple binomial equation
- research on problem solving in quadratic equation
- quadratic solver vertex
- quad form caluclator
- google simultaneous equations
- sixth grade ca simulteaneous equations
- find equation of quadratic curve
- how to learn math
- how to do the quadratic formula easy
- solving cubed equations
- what are the ways to solve quadratic equations
- what are the pros and cons of using systems of equations by substitution or elimination3f
- how to solve a quadratic equation show work
- easy to solve quadratic word problem
- solving quadratic equations puzzles,
- simultaneoue equation question
- real life application of quartic
- flowchart of quadratic formula
- show simple quadratic quations for graphs
|
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%>
|