Вопрос задан 18.02.2019 в 10:45. Предмет Математика. Спрашивает Быков Виктор.

Постройте фигуру по точкам

(2;7),(0;5),(-2;7),(0;8),(2;7),(-4;-3),(4;0),(11;-2),(9;-2),(11;-3),(9,-3),(5;-7),(-4;-3.Клюв:(-4;8),(-2;7),(-4;6).Крыло:(1;-3),(4;-2),(7;-3),(4;-5),(1;-3).Глаз:(0;7)
0 0
Перейти к ответам

Ответы на вопрос

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Зулькарнеева Валерия.
Как-то так получилось. клюв немного дорисовала. поставила >.
0 0
Отвечает Зиновьева Вероника.
Простейшая задания кординатнач плоскость рисуйте и поставь точки
0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

Plotting the Given Points

To plot the given points, we can use the coordinates provided. Let's plot the points and then identify the beak, wing, and eye based on the given coordinates.

The given points are: (2;7),(0;5),(-2;7),(0;8),(2;7),(-4;-3),(4;0),(11;-2),(9;-2),(11;-3),(9,-3),(5;-7),(-4;-3)

Identifying the Beak, Wing, and Eye

Based on the given coordinates, we can identify the beak, wing, and eye as follows:

Beak: The beak coordinates are: (-4;8),(-2;7),(-4;6).

Wing: The wing coordinates are: (1;-3),(4;-2),(7;-3),(4;-5),(1;-3).

Eye: The eye coordinate is: (0;7).

Let's plot these points and identify the beak, wing, and eye based on the given coordinates.

```python import matplotlib.pyplot as plt

# Given points points = [(2,7),(0,5),(-2,7),(0,8),(2,7),(-4,-3),(4,0),(11,-2),(9,-2),(11,-3),(9,-3),(5,-7),(-4,-3)] x, y = zip(*points)

# Beak coordinates beak = [(-4,8),(-2,7),(-4,6)] bx, by = zip(*beak)

# Wing coordinates wing = [(1,-3),(4,-2),(7,-3),(4,-5),(1,-3)] wx, wy = zip(*wing)

# Eye coordinate eye = (0,7)

# Plotting the points plt.figure(figsize=(8,8)) plt.plot(x, y, 'bo', label='Points') plt.plot(bx, by, 'r-', label='Beak') plt.plot(wx, wy, 'g-', label='Wing') plt.plot(eye[0], eye[1], 'yo', label='Eye') plt.text(eye[0], eye[1], ' Eye', verticalalignment='bottom', horizontalalignment='right')

plt.title('Plot of Given Points with Beak, Wing, and Eye') plt.xlabel('X') plt.ylabel('Y') plt.legend() plt.grid(True) plt.show() ```

This code will plot the given points and identify the beak, wing, and eye based on the provided coordinates.

0 0

Топ вопросов за вчера в категории Математика

Последние заданные вопросы в категории Математика

Задать вопрос