- how to solve the vertex?
- worded problems solving quadratic equation
- quadratic equation imaginary root php
- cusat syllabus s4 ec
- "quadratic equation" "real life application"
- howto solve quadratic equations
- quadratic equation solver show steps
- "4th order equation solver"
- real life quadratic equations
- "solve for x" in quadratic equation
- qudratic inequalities
- quadratic equations edu
- quadratic type equations ti-89 download
- secureusa grab
- lesson plans for tesaching roots of quadratic equations math 12
- algebra 1 quadratic equations
- quadratic equation in excel
- pros and cons of solving systems of equations by elimination
- how are quadratic equations linked together
- simultaneous and quadratic equation solver
|
The Hardest Equation Ever
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%>
|