- fx 3650p quadratic equation program
- simple equation solution by vedic maths
- quadratic equation question what answer
- how to solve "quardratic equation"
- completing the square on ti-89 titanium calculator
- a easy way to solve equations
- simplest way to factorise quadratic equation
- online factorise quadratic
- jobs that are related to using the quadratic equation
- solve quartic
- exact +equationns
- quadratic equation fx3650p
- pros and cons of using the graphing method to solve linear equations
- how to do the quadratic formula easy
- simultaneous imaginary equations
- solving quadratic equation practice programs free
- how are quadratic equations linked together
- 2x2 - 3x -2 = 0 using a quadratic formula
- pros and cons of graphing in systems of equations
- scilab simultaneous differential equations
|
Simultaneous Equations Solver Online
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%>
|