- lesson units on quadratic equations
- solving third-order equation
- harris-benedict equation/how to use
- fastest way to solve cubic equation
- quadratic equations microsoft excel solve
- rooting a negative number
- math equations. squared
- solving 3 step equations with brackets
- free rational expression equation solvers
- free solve quadratic equations
- quadric equation+ fx3650p
- c language quadratic equations
- solving quadtratic equations by using the quadratic formula problem solver
- simultaneously equation solver
- quadratic equation fx3650p
- pros and cons of substitution or elimination
- delphine govender
- solver quadratic equation online
- finding the rule of an equation
- solving using quadratic formula worksheet
|
Basics Of Simultaneous Equations
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%>
|