- a demand equation
- rules of quadratic equation
- cons and pros of solving systems of equations by graphing
- determine the symmetries, solver
- solve simultaneousquadratic equations
- simultaneous solver online free
- solver - microsoft excel - quadratic equations
- what is the vertex form of a quadratic equation
- solving 4th degree equation using imaginary number
- workout simultaneous equations
- "quadratic equations solver"
- step by step quadratic equations by graphing
- equations with brackets solver
- what is quadratic functions
- quadratic math basics
- how to do quadratic functions basics
- worksheets for solving simple equations
- what is a quadtatic equation
- step by step help with quadratic equations
- tips and tricks for solving quadratic equations
|
Solving A Quadratic Equations
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%>
|