- solving simultaneous equations with quadratic equation
- solving simultaneous equations x squared
- equations online
- "quadratic equations can be solved by graphing"
- factorise qudratic
- how to solve quartic equation excel
- hardest number math problem with answer
- equations to solve triangles
- how to solve simultaneous equations step by step
- howto sovle addition polynomials
- solving box method
- sejarah perkembangan ]komputer
- graphic calculator tutorial cfx9850gc
- rule as an equation
- real-life application of a quadratic equations
- simultaneous quadratic equation calculator
- 101 uses of quadratic equations
- what quadratic equation is
- how to solve maximum area
- find real life quadratic equations without solutions
|
Quadretic Eqn
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%>
|