Изображу ваш запрос в одном графике:
import numpy as npimport matplotlib.pyplot as plt
x = np.linspace(-10, 10, 400)y1 = x + 2/4y2 = -2*x - 3y3 = 2/5 - x
plt.figure(figsize=(10, 6))plt.plot(x, y1, label='y = x + 2/4')plt.plot(x, y2, label='y = -2x - 3')plt.plot(x, y3, label='y = 2/5 - x')
plt.xlabel('x')plt.ylabel('y')plt.title('Graph of the given functions')plt.legend()plt.grid(True)plt.show()
Изображу ваш запрос в одном графике:
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-10, 10, 400)
y1 = x + 2/4
y2 = -2*x - 3
y3 = 2/5 - x
plt.figure(figsize=(10, 6))
plt.plot(x, y1, label='y = x + 2/4')
plt.plot(x, y2, label='y = -2x - 3')
plt.plot(x, y3, label='y = 2/5 - x')
plt.xlabel('x')
plt.ylabel('y')
plt.title('Graph of the given functions')
plt.legend()
plt.grid(True)
plt.show()