- easy ways to solving a quadratic equation
- solving box method
- scilab simultaneous equations tutorial
- how to solve a quadratic equation givens points
- "diana bajak"
- hardest math problem
- free simultaneous equations worksheets
- steps on solving quadratic equations
- show quadratic equations
- quadratic equation real life application
- solving simoltaneous equations
- quadratic equation -b
- solving word quadratic equations
- reverse quadratic equation calculator
- simple equations and calculations to solving half-life problems
- solving simultaneous equations worksheet
- solving quadratic ti 89
- pros and cons of graphing, substitution, or elimination
- algebra examples
- quadratic equations and word problems
|
The Hardest Formula
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%>
|