Download the Guru IA app

Android and iOS

Foto de perfil

Claudio

SENT BY THE APP
Estudos Gerais11/29/2024

import numpy as np import matplotlib.pyplot as plt # Defini...

import numpy as np import matplotlib.pyplot as plt

Definir a função y = 3x^2 + 3

x = np.linspace(-3, 3, 300) # Valores de x y = 3 * x**2 + 3 # Calcula y para cada x

Criar o gráfico

plt.plot(x, y, label='y = 3x^2 + 3', color='blue') plt.title("Gráfico de y=3x2+3y = 3x^2 + 3") plt.axhline(0, color='black', linestyle='--') # Eixo x plt.axvline(0, color='black', linestyle='--') # Eixo y plt.xlabel("x") plt.ylabel("y") plt.grid(True, linestyle='--', alpha=0.6) plt.legend() plt.show()

Faz o grafico para mi por favor

Send your questions through the App
Google Play
App Store
Equipe Meu Guru

Do you prefer an expert tutor to solve your activity?

  • Receive your completed work by the deadline
  • Chat with the tutor.
  • 7-day error guarantee