| View previous topic :: View next topic |
| Author |
Message |
firemeboy
Daedalian Member
|
Posted: Tue Feb 22, 2000 4:35 pm Post subject: 1 |
|
|
Ok, I think I have the area of a square down, and now I can figure the area of a circle as well as its volume.
What about the area of a triangle?
I know this is probably very simple for most people, but I dont remember how to do it. |
|
| Back to top |
|
 |
Amy
Daedalian Member
|
Posted: Tue Feb 22, 2000 5:47 pm Post subject: 2 |
|
|
| It's bh/2, where b=the length of the base (whichever side you are calling the "bottom" of the triangle) and h=the height, or the vertical distance from the line containing the triangle's base to the angle formed by the other two sides. It's a lot easier to show than to explain in words, but I don't have time at the moment to fiddle around with ASCII graphics trying to draw it. |
|
| Back to top |
|
 |
Sofis
Beautiful and Decadent
|
Posted: Tue Feb 22, 2000 7:15 pm Post subject: 3 |
|
|
| What Amy is saying is, basically, a triangle is half a square. |
|
| Back to top |
|
 |
Amy
Daedalian Member
|
Posted: Tue Feb 22, 2000 9:11 pm Post subject: 4 |
|
|
| Well, half a rectangle, anyway. |
|
| Back to top |
|
 |
firemeboy
Daedalian Member
|
Posted: Tue Feb 22, 2000 9:16 pm Post subject: 5 |
|
|
The angles of the triangle don't matter? Ok, I think I got it, why don't you give me a problem and see if I can get it.
[This message has been edited by firemeboy (edited 02-22-2000).] |
|
| Back to top |
|
 |
araya
Daedalian Member
|
Posted: Tue Feb 22, 2000 11:39 pm Post subject: 6 |
|
|
alright, I'll be professor araya today. Here's your assignment.
code:
Find the areas of these two triangles.
|\ / \
| \ / \
| \ 10 6 / \ 6
8 | \ / \
| \ / \
| \ / \
------- -------------
6 6
|
|
| Back to top |
|
 |
Sofis
Beautiful and Decadent
|
Posted: Tue Feb 22, 2000 11:58 pm Post subject: 7 |
|
|
| Stupid me. Half a rectangle, of course. |
|
| Back to top |
|
 |
Alfie
Bovine Member
|
Posted: Wed Feb 23, 2000 5:50 am Post subject: 8 |
|
|
| [nitpick]It is actualy half a parallelogram. The area of a | |ogram is bh. So the area of a triangle is bh/2[/nitpick] |
|
| Back to top |
|
 |
firemeboy
Daedalian Member
|
Posted: Wed Feb 23, 2000 3:09 pm Post subject: 9 |
|
|
| Ok, the area of the first triangle is 24. That one was simple enough. But on the second rectangle, how do you find the height? I am going to try some things and make a guess. |
|
| Back to top |
|
 |
firemeboy
Daedalian Member
|
Posted: Wed Feb 23, 2000 3:12 pm Post subject: 10 |
|
|
| It isn't 18 is it? |
|
| Back to top |
|
 |
Amy
Daedalian Member
|
Posted: Wed Feb 23, 2000 3:57 pm Post subject: 11 |
|
|
Try applying the Pythagorean theorem.
Alfie--well, yes, it is half a parallelogram, but a parallelogram is essentially a rectangle in terms of its area--just part of it has been hacked off one side and stuck on the other.  |
|
| Back to top |
|
 |
firemeboy
Daedalian Member
|
Posted: Wed Feb 23, 2000 5:03 pm Post subject: 12 |
|
|
| Oh boy, I don't know if I remember exactly how that goes. ab+- the square root of something or other... Anybody know? |
|
| Back to top |
|
 |
Quailman
His Postmajesty
|
Posted: Wed Feb 23, 2000 5:15 pm Post subject: 13 |
|
|
No, that's not it. The Pythagorean Theorem states that for any right triangle, the sum of the squares of the lengths of the 2 shorter sides is equal to the square of the length of the hypotenuse. (a^2 + b^2=c^2) BTW, the Scarecrow got it wrong.
In this case, find divide the 6x6x6 triangle down the middle and consider either half, which has a base of 3 and a hypotenuse of 6. The height = sqrt(6^2-3^2) = sqrt(27) = approximately 5.196. That's the height of your triangle. |
|
| Back to top |
|
 |
firemeboy
Daedalian Member
|
Posted: Wed Feb 23, 2000 5:56 pm Post subject: 14 |
|
|
Ok, it finally dawned on me. I think I can do it now.
I had a student teacher for geometry in high school and she was in to the self confidence thing. Nobody learned anything but we walked out of the class feeling pretty peachy about ourselves.
It was a waste. |
|
| Back to top |
|
 |
araya
Daedalian Member
|
Posted: Fri Feb 25, 2000 2:33 am Post subject: 15 |
|
|
Okay, well I haven't seen any correct answers for the second triangle so I'll assume that it's fairly trivial. Here's how to solve it:
code:
/|\
/ | \
6 / | \ 6
/ |h \
/ | \
-----------
3 3
Since pythagorus states that 3*3 + h*h = 6*6, then h*h = 36 - 9 = 27, so h = sqrt(27)
Then the area is 3 * sqrt(27) = 9 * sqrt(3) = 15.588 square units. Hope this helped somebody. It's extremely important to understand the pythagorean theorem. If you want more questions, please ask. |
|
| Back to top |
|
 |
Amy
Daedalian Member
|
Posted: Thu Mar 02, 2000 3:28 pm Post subject: 16 |
|
|
Technically, the area is half that.  |
|
| Back to top |
|
 |
Aaron
Daedalian Member
|
Posted: Thu Mar 02, 2000 3:44 pm Post subject: 17 |
|
|
I think this would be a time to mention the basic 'sine rule' for triangles too.
A B C
--- = --- = ---
sin(a) Sin(b) Sin(c)
This will give angles and side lengths for any unknowns in a triangle.
As if you didn't know already.
Cya,
Az. |
|
| Back to top |
|
 |
Aaron
Daedalian Member
|
Posted: Thu Mar 02, 2000 3:48 pm Post subject: 18 |
|
|
Oops, my spacing didn't work.
A/sin(a)=B/sin(b)=C/sin(c)
Where A,B or C = length of side
and a,b or c = the opposite angle.
|
|
| Back to top |
|
 |
firemeboy
Daedalian Member
|
Posted: Thu Mar 02, 2000 5:14 pm Post subject: 19 |
|
|
| Whoops, when Quailman showed how to get the height, for some reason I was thinking it was solved. |
|
| Back to top |
|
 |
araya
Daedalian Member
|
Posted: Fri Mar 03, 2000 2:49 am Post subject: 20 |
|
|
| no Amy, technically the area is exactly that. I divided the base in half. |
|
| Back to top |
|
 |
Amy
Daedalian Member
|
Posted: Fri Mar 03, 2000 3:21 pm Post subject: 21 |
|
|
| Oops! Sorry. Wasn't paying attention. |
|
| Back to top |
|
 |
CrystyB
Misunderstood Guy
|
Posted: Sun Mar 05, 2000 12:18 pm Post subject: 22 |
|
|
reply for firemeboy
(posted 02-22-2000 04:16 PM)
----------------------------
The angles of the triangle don't matter?
Well, using the definition of sin, h is equal to the length of the (either one) side with which it has a common vertex multiplied by the angle between this side and the base (on which the h "falls"). So A=a*b*sin(angle between a and b). |
|
| Back to top |
|
 |
godeloo
Daedalian Member
|
Posted: Sun Mar 12, 2000 5:27 pm Post subject: 23 |
|
|
| ChristyB The trigonometrical formula for the area of a triangle is 1/2 a*c*sin b |
|
| Back to top |
|
 |
mathgrant
A very tilted cell member
|
Posted: Fri May 11, 2001 2:22 am Post subject: 24 |
|
|
Oops. Bump.
------------------
"Mathematics is like the Nile, begins in minuteness, ends in magnificence." --Charles Caleb Colton
|
|
| Back to top |
|
 |
|