Для построения графика у=2,5x и у=-4,5x нужно построить две прямые на одном графике.
import matplotlib.pyplot as pltimport numpy as np
x = np.linspace(-10, 10, 100)y1 = 2.5 xy2 = -4.5 x
plt.figure()plt.plot(x, y1, label='y=2.5x')plt.plot(x, y2, label='y=-4.5x')plt.xlabel('x')plt.ylabel('y')plt.title('Графики у=2.5x и y=-4.5x')plt.legend()plt.grid(True)plt.show()
Для построения графика у=2,5x и у=-4,5x нужно построить две прямые на одном графике.
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(-10, 10, 100)
y1 = 2.5 x
y2 = -4.5 x
plt.figure()
plt.plot(x, y1, label='y=2.5x')
plt.plot(x, y2, label='y=-4.5x')
plt.xlabel('x')
plt.ylabel('y')
plt.title('Графики у=2.5x и y=-4.5x')
plt.legend()
plt.grid(True)
plt.show()