If you have a function in the form of
ax^2+bx+c=0, we know that the if we want to solve for x, we use the quadratic equation:
(-b(+/-)Sqrt(b^2 - 4ac))/2a
How was this discovered?
Printable View
If you have a function in the form of
ax^2+bx+c=0, we know that the if we want to solve for x, we use the quadratic equation:
(-b(+/-)Sqrt(b^2 - 4ac))/2a
How was this discovered?
ax2 + bx + c = 0
a[x2 + (b/a)x] + c = 0
a[(x + (b/2a))2 - (b2/4a2)] + c = 0
a(x + (b/2a))2 - (b2/4a) + c = 0
a(x + (b/2a))2 = (b2/4a) - c
(x + (b/2a))2 = (b2/4a2) - (c/a)
(x + (b/2a))2 = (b2/4a2) - (4ac/4a2)
(x + (b/2a))2 = (b2 - 4ac)/(4a2)
(x + (b/2a)) = +/- [\sqrt(b2 - 4ac)]/(2a)
x = (-b/2a) +/- [\sqrt(b2 - 4ac)]/(2a)
x = [-b +/- \sqrt(b2 - 4ac)]/(2a)