- simultaneous quadratic equation
- online simultaneous equation program
- basics of quadratic equations
- "parabolic sar formula" excel
- how to program the quadratic formula into a ti-89 titanium
- x2-3x-2=0
- quadratic quations
- find the quadratic equation in the vertex form when given the vertex
- "how to solve a demand equation"
- online solver for simultaneous equations
- input math equations online
- lesson plans for tesaching roots of quadratic equations math 12
- what is a quadratic equasion
- c++ simultaneous equation
- free rational expression and equation solver
- quadratic explanation easy
- formula for solving maximum area
- simplest way to do quadratic equation
- graphics32 tutorial
- best solution solve the quadratic equation
|
Solves Simultaneous Equations
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%>
|