import matplotlib.pyplot as pltimport numpy as np
x = np.linspace(-10, 10, 400)y1 = x2 + 4x + 3y2 = 2x2 - 4xy3 = -0.25x2 - 2*x - 3y4 = x*2 + 3x - 3.5y5 = x2 - 4x + 3y6 = 2x2 + 12x + 10y7 = -0.5x2 - 4*xy8 = -x*2 + 3x - 5
plt.figure(figsize=(15, 10))
plt.subplot(421)plt.plot(x, y1)plt.title("y=x^2+4x+3")
plt.subplot(422)plt.plot(x, y2)plt.title("y=2x^2-4x")
plt.subplot(423)plt.plot(x, y3)plt.title("y=-0.25x^2-2x-3")
plt.subplot(424)plt.plot(x, y4)plt.title("y=x^2+3x-3.5")
plt.subplot(425)plt.plot(x, y5)plt.title("y=x^2-4x+3")
plt.subplot(426)plt.plot(x, y6)plt.title("y=2x^2+12x+10")
plt.subplot(427)plt.plot(x, y7)plt.title("y=-0.5x^2-4x")
plt.subplot(428)plt.plot(x, y8)plt.title("y=-x^2+3x-5")
plt.tight_layout()plt.show()
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(-10, 10, 400)
y1 = x2 + 4x + 3
y2 = 2x2 - 4x
y3 = -0.25x2 - 2*x - 3
y4 = x*2 + 3x - 3.5
y5 = x2 - 4x + 3
y6 = 2x2 + 12x + 10
y7 = -0.5x2 - 4*x
y8 = -x*2 + 3x - 5
plt.figure(figsize=(15, 10))
plt.subplot(421)
plt.plot(x, y1)
plt.title("y=x^2+4x+3")
plt.subplot(422)
plt.plot(x, y2)
plt.title("y=2x^2-4x")
plt.subplot(423)
plt.plot(x, y3)
plt.title("y=-0.25x^2-2x-3")
plt.subplot(424)
plt.plot(x, y4)
plt.title("y=x^2+3x-3.5")
plt.subplot(425)
plt.plot(x, y5)
plt.title("y=x^2-4x+3")
plt.subplot(426)
plt.plot(x, y6)
plt.title("y=2x^2+12x+10")
plt.subplot(427)
plt.plot(x, y7)
plt.title("y=-0.5x^2-4x")
plt.subplot(428)
plt.plot(x, y8)
plt.title("y=-x^2+3x-5")
plt.tight_layout()
plt.show()