- how solve 3 simultaneous quadratic equations
- what are the pros and cons of each quadratic method?
- simultaneous solve quadratic equations
- intro to quadratic equations
- what are the pros and cons of quadratic equations can be solved by graphing, using the
- how to solve quadratic equations on ti-89 titanium
- elevator equqtion
- help quadratic equations
- graphing quadratic functions for kids
- how to create a program for solving quadratic equations
- how to solve quadratic problems with ti-89 titanium
- completing the square solver
- simultaneous question solver
- how to plot the quadratic formula in excel
- quadratic simultaneous solver
- quadratic formula car accidents
- integral-calculator show work
- story of quadratic equation
- what is a quadratic equation solve
- how do u solve quadratic equations
|
Quadratic And 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%>
|