- 218.254.84.68
- the basics to quadratic equations
- a flowchart of quadratic equation
- solving quadratic equations with "four variables"
- solving linear equationsquadratic equations
- solve simple simultaneous equations
- bonus simultaneous equation example
- online equation factorise
- solving simulanteous equations
- quadratic functions data to equations
- quadratic equation multiplied by a quadratic equation
- how to solve 8x-2y
- easiest way to solving quadratic equations
- how to solve quadratic equations on ti-89 titanium
- notes on simultaneos equations
- the basics of solving equations
- how to solve equations from the third order
- why do quadratic equations have maximums
- sejarah kemajuan ict di dunia
- rules in solving quadratic equations
|
Simultaneous Equation Solver Online Program
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%>
|