- solve a cuadratic equation with ti-89
- solving quadratic equation in c++
- quadratic equations fence
- how to solve word problems by simultaneous equations
- pros and cons of graphing and using substitutions and elimination
- how to solve quadratic equations on ti83
- how to solve telegraph equation
- solve a quadratics online online
- simultaneous equations simple solving
- quadratic equation solving
- quadretic formula
- quadratic functions rules
- pros and cons of substitution, elimination and graphing in systems of equations
- solving quadratic equations, quiz
- solve online simultaneous equations
- poem in quadratic equation
- solve simultaneousquadratic equations
- pros and cons to quadratic equations
- examples of quadratic equation problem word
- is it possible to have different quadratic equations with the same solutions
|
How To Understand Quadratic Equation
Solving Quadratic Equations
<%dim a, b,c,xa, xba=request.form("a")b=request.form("b")c=request.form("c")if a="" or b="" or c="" thenresponse.write "You must enter values into the equation solver before find the answers! Please click here to be directed to the form"elseif ( ( b*b)-(4*a*c))>=0 thenxa=((-b+ ( (b*b) - (4*a*c) )^(1/2) ))/(2*a)response.write "The first solution is: " & xaxb=((-b- ( (b*b) - (4*a*c) )^(1/2) ))/(2*a)response.write " The second solution is: " & xbelseresponse.write("There are no real solutions to this equation. You will have to learn how to use i!")end ifend if%>
|