- solving quadratic equation in math
- lesson plan, quadratic equations
- solving/solving quadratics
- "cross method program fx-3650p"
- vertex of a quadratic equation solver
- converting quadratic to vertex form solver
- how to solve equations simoltaniously
- simultaneous equations solver with working
- quadractic equations
- quadratic equations in golf
- what are the pros and cons of quadratic formula, completing the square and factoring
- what quadratic equation
- "rebecca olson gupta" photo
- how to solve quartic equation excel
- mathematical +equqtion work function in thermodynamics
- how to solve vertex
- solving equations worksheets graphs
- excel "simultaneous equations"
- equetion of parabola
- three points to find a quadratic
|
Solving Simultaneous Quadratics
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%>
|