Skip to main content

--description--

This video show you how to solve quadratic equations, and explain the coefficients ("A," "B," and "C") in the standard form and how to use them to find the roots and vertex.

Here is the Colab notebook to go along with this video.

--question--

--text--

In Python code, what is the formula for the x value of the vertex?

--answers--

x = -b/2a


x = -b/(2 * a)


x = b/2a


x = -b/2*a

--video-solution--

2