- simplifying the formula for cube of trinomial
- sample problem and solution of quadratic equation
- how to program equations ti-89
- how do you work out worded simultaneous equations
- how to solve this equetion 28x2b12928x2b22928x2b3293f
- how do you solve equations on a ti-83 plus?
- real life applications of quadratic equations
- quadratic equation word problems
- solving quadratic word problems worksheet
- quadratic formula to work word problems
- "3x3 equation solver"
- quadratic equations real life application
- advanced quadratic equation solver, ti-83,
- solving quadratic equations java system.out
- easy simultaneous equations to solve
- how to solve 4x28x50
- what are the pros and cons of solving quadratic equations by graphing3f
- guide questions of factoring trinomial
- two step equations worksheets
- ti-89 gauss jordan
|
Solve Simultaneous Equation Program
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%>
|