Back to Freecodecamp

Quadratics

curriculum/challenges/english/blocks/learn-quadratic-equations/6363d2429078df117ce4c400.md

latest608 B
Original Source

--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 <a href="https://colab.research.google.com/drive/1jr_k4awSSW1CBs9ma9oS_WnDblDjX3pc?usp=sharing" target="_blank" rel="noopener noreferrer nofollow">Colab notebook to go along with this video.</a>

--questions--

--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