- how to solve simultaneous equation easy way
- what is the constant x squared 2b x
- b-4ac solve
- c language quadratic equations
- online equation calculator
- explanation of the guess and check method of solving simultaneous equations
- simulatneous solver
- questions on simultaneous equations linear and non linear
- show how to solve quadratic equations
- how to do the quadratic formula in labview
- simultaneous equasions for beginners
- what is the quadratic equation3f
- solving third order quadratic
- solve b3d2rt
- quadratic solver working
- 2x squared quadratic equation
- optimization of quadratic equation
- solvingquadraticequations
- different quadratic equations with the same solutions
- sample lesson plan in quadratic equation application
|
Simulatenously Solving Equation
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%>
|