Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Algorithm Alley


May01: Finding the Area of a Triangle

Finding the Area of a Triangle

Here is a typical problem in analytic geometry: You are given the coordinates of two points, P1(x1,y1) and P2(x2,y2), and asked to find the area of the triangle OP1P2, where O is the origin. To keep things straightforward, I'll stipulate that P1 and P2 are in the first quadrant, and that P1 is to the left of P2. Let r1 and r2 be the lengths of OP1 and OP2, respectively, and let q be the angle between the lines OP1 and OP2 (see Figure 2).

Recall that the area of a triangle is one-half the base times the height, and, after perhaps brushing off a little mental dust, that the height h at angle q is given by h=r1sin(q). Example 2(a) gives the area of triangle OP1P2.

What remains is to somehow work the coordinates of the points P1 and P2 into this formula. This is done using a bit of trigonometry.

If a is the angle that OP1 makes with the positive x-axis, and is the angle that OP2 makes with the positive x-axis, then q=-. By the definition of sine and cosine, you then have Example 2(b).

Using the identity sin(a-b)=sin(a)cos(b)- cos(a)sin(b), you find Example 2(c). And that's it. You are done! By multiplying both sides of the equation in Example 2(c) by r1r2, you arrive at Example 2(d).

— T.G.


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.