In Brazil, this formula is widely known as "Bhaskara's Formula", named after the 12th-century Indian mathematician Bhaskara II.
Interestingly, this naming convention is unique to Brazil; in the rest of the world, it's simply the "Quadratic Formula".
The roots are the points where the parabola crosses the x-axis.
For
Solve
Even the most standard mathematical formulas can be presented with style.
import matplotlib.pyplot as plt
import numpy as np
# Data
x = np.linspace(0, 4, 400)
y = x**2 - 4*x + 3
# Plot
plt.plot(x, y)
plt.scatter([1, 3], [0, 0]) # Roots
# Save
plt.savefig('images/parabola_plot.png')