Chapter 3: Problem 3
Compute the area of an arbitrary triangle. An arbitrary triangle can be described by the coordinates of its three vertices: \(\left(x_{1}, y_{1}\right),\left(x_{2}, y_{2}\right),\left(x_{3}, y_{3}\right)\), numbered in a counterclockwise direction. The area of the triangle is given by the formula $$ A=\frac{1}{2}\left|x_{2} y_{3}-x_{3} y_{2}-x_{1} y_{3}+x_{3} y_{1}+x_{1} y_{2}-x_{2} y_{1}\right| $$ Write a function area(vertices) that returns the area of a triangle whose vertices are specified by the argument vertices, which is a nested list of the vertex coordinates. For example, vertices can be \([[0,0],[1,0],[0,2]]\) if the three corners of the triangle have coordinates \((0,0),(1,0)\), and \((0,2)\). Test the area function on a triangle with known area. Name of program file: area_triangle.py.
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.