• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Is there a way to find the height...or area of a parallelogram using coordinates?

PingSpike

Lifer
I'm sure there is, but I'm apparently to stupid to figure it out. Every formula I look up for area says to use height to determine it. Which is fine but every formula to determine height says to use the area. That's great. All I have are the coordinates and therefore the length of all sides. I can assume its a parallelogram.
 
The area = a*b*sin(theta). 'a' being the length of one side 'b' being the other, and theta being the angle between the two. And all of that would be fairly easy to get from the points.
 
Off the top of my head you should be able to get the height using a dot product to find the projection of one side onto an adjacent side and using simple trigonometry after that.

It may help to look at the diagram on this page under "Geometric Interpretation":

http://en.wikipedia.org/wiki/Dot_product

You can use the dot product to get the magnitude of one side projected onto the other as well as the angle between them. Then you can use the law of cosines to find the last side of the triangle, giving you the height of the parallelogram.
 
Back
Top