- quadratic equations
- solving exponential quadratic equations
- "form 4 additional maths"
- story problem about quadratic equation
- quadratic equation in excel solver
- how to do x squared in excel
- solve for x and inside brackets
- example word problems in quadratic equations
- difficult question on quadratic equation
- graphing quadratic equations lesson
- ticket sales and quadratic equations
- tips for quadratic equations
- pros and cons for addition linear equation
- number of real roots of equations
- ask a quadratic equation questions
- "simultaneous quadratic equations""thesis"
- equation question
- how do i do simultaneous equations with quadratics
- solving quadratic equation on ti-85
- solving worded quadratic equations
|
Simultaneous Equations 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%>
|