- what are the pros and cons of graphing, the quadratic formula, completing the square and factoring to solve a quadratic equation?
- finding the equation describing a quadratic function
- one of the solutions to the quadratic equation x2 + 3x - 28 is -7. what is the other solution?
- quadratic calculator find xintercept
- question on quadratic equations
- a quadratic equation
- trigonometry quadratic equations in vertex form
- equation solver by substitution calculator
- quadratic importance
- solving quadratic equations calculators
- online simultaneous equation
- poly simultaneous equation solver online
- quadratic equations building examples
- how to solve quadratic functions
- solve quadratic matlab
- step by step solve quadratic equations
- leave a message
- differential equations solver online
- calculator for quadratic equations that show work
- an equation in quadratic form will always "have a negative and a positive solution"
|
The Hardest Equation Ever
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%>
|