- solving 3 simultaneous equations website
- solving quadratic equations online
- set quadratic equation question
- a computer program in solving quadratic equation
- quadratic equation sample questions
- solving similtaneous equations with x squared
- free algebra solver equations
- 4th order quadratic equation
- different quadratic equations with the same solutions
- quadratic equation question and answer
- real life examples of quadratic equations with answers
- how to find the equation of a curve
- examples of word problems for quadratic equation
- the easy way to solve the equations
- word problems for quadratic equations
- vigrx canada
- help solve 3x2-6x=0
- form 4 additional maths exercises -project
- quadratic function in real life examples
- example of quadratic equations in real life
|
How To Understand Quadratic 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%>
|