Difference between revisions of "1996 AJHSME Problems/Problem 22"
Talkinaway (talk | contribs) (Created page with "==Problem== The horizontal and vertical distances between adjacent points equal 1 unit. The area of triangle <math>ABC</math> is <asy> for (int a = 0; a < 5; ++a) { for (i...") |
Williamkng1 (talk | contribs) |
||
| Line 12: | Line 12: | ||
} | } | ||
draw((0,0)--(3,2)--(4,3)--cycle); | draw((0,0)--(3,2)--(4,3)--cycle); | ||
| − | label("$A$",(0,0),SW); | + | label("$A$",(0,0),SW);wwqaerhqe |
label("$B$",(3,2),SE); | label("$B$",(3,2),SE); | ||
label("$C$",(4,3),NE); | label("$C$",(4,3),NE); | ||
Revision as of 22:57, 10 October 2012
Contents
Problem
The horizontal and vertical distances between adjacent points equal 1 unit. The area of triangle
is
for (int a = 0; a < 5; ++a)
{
for (int b = 0; b < 4; ++b)
{
dot((a,b));
}
}
draw((0,0)--(3,2)--(4,3)--cycle);
label("$A$",(0,0),SW);wwqaerhqe
label("$B$",(3,2),SE);
label("$C$",(4,3),NE);
(Error making remote request. Unknown error_msg)
Solution 1
takes up half of the 4x3 grid, so it has area of
.
has height of
and a base of
, for an area of
.
has height of
and a base of
, for an area of
Note that
can be found by taking
, and subtracting off
and
.
Thus, the area of
, and the answer is
.
There are other equivalent ways of dissecting the figure; right triangles
and rectangle
can also be used.
Solution 2
Using the Shoelace Theorem, and labelling the points
, we find the area is:
Area =
, which is option
.
See Also
| 1996 AJHSME (Problems • Answer Key • Resources) | ||
| Preceded by Problem 21 |
Followed by Problem 23 | |
| 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 | ||
| All AJHSME/AMC 8 Problems and Solutions | ||