- simultaneous equations easy
- solving equations in quadratic form
- quadratic equation carpentry
- real life examples of a quadratic function
- free graphing quadratic chart to print
- what are the pros and cons of using the quadratic formula
- solve quadratic excel
- solving equations by factoring problem solver
- how to do trinomials
- c++ find roots of equation
- working with quadratic roots
- quadratic equations step by step
- solve quadratic on ti-83 plus
- ti 83 plus website solving the quadratic equation
- quadratic formula to work word problems
- simultaneous equations the rules
- real life applications of quadratic functions word problem
- what does a quadratic equation tell you
- buy folisolv
- "x2 + 5x +4 = 0"
|
Simultanious Equation 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%>
|