1 00:00:00,000 --> 00:00:07,000 2 00:00:07,000 --> 00:00:08,790 DAVID JORDAN: Hello, and welcome back to recitation. 3 00:00:08,790 --> 00:00:11,260 In this problem, I'd like you to compute 4 00:00:11,260 --> 00:00:13,740 the area of a triangle. 5 00:00:13,740 --> 00:00:17,620 This triangle sits in space and it has its three vertices, 6 00:00:17,620 --> 00:00:20,560 labeled here as P1, P2, and P3. 7 00:00:20,560 --> 00:00:22,650 So we're going to compute this area, and we're going to do it 8 00:00:22,650 --> 00:00:25,210 using the cross product, which we learned about in lecture. 9 00:00:25,210 --> 00:00:27,450 So why don't you take some time to work this out, pause 10 00:00:27,450 --> 00:00:29,530 the video, and we'll check back in a minute and 11 00:00:29,530 --> 00:00:30,780 see how I did it. 12 00:00:30,780 --> 00:00:39,373 13 00:00:39,373 --> 00:00:41,450 Hello and welcome back. 14 00:00:41,450 --> 00:00:44,430 So the first thing that I like to do with a problem like this 15 00:00:44,430 --> 00:00:47,330 is I like to draw a picture so I can kind of think about 16 00:00:47,330 --> 00:00:48,530 what's going on. 17 00:00:48,530 --> 00:00:59,720 So we have this triangle sitting out in space. 18 00:00:59,720 --> 00:01:02,890 And we know that we want to take a cross product in order 19 00:01:02,890 --> 00:01:07,960 to compute its area, but we need to be careful. 20 00:01:07,960 --> 00:01:09,690 Cross product, it doesn't make sense to take 21 00:01:09,690 --> 00:01:10,630 cross product of points. 22 00:01:10,630 --> 00:01:13,160 What makes sense is to take cross product of vectors. 23 00:01:13,160 --> 00:01:15,340 So the first thing that we need to do is build some 24 00:01:15,340 --> 00:01:17,600 vectors that describe this triangle. 25 00:01:17,600 --> 00:01:23,330 And the vectors that we need to build are 26 00:01:23,330 --> 00:01:31,830 P1, P2 and P1, P3. 27 00:01:31,830 --> 00:01:33,430 Since we're going to use these in a minute, let's go ahead 28 00:01:33,430 --> 00:01:34,960 and compute them now. 29 00:01:34,960 --> 00:01:44,700 So P1, P2 is just the difference of P2 minus P1. 30 00:01:44,700 --> 00:01:48,390 So we get a 0 minus a negative 1. 31 00:01:48,390 --> 00:01:53,340 So we get 1, 2, and 1. 32 00:01:53,340 --> 00:01:55,530 Let me just check my notes to make sure I did that right. 33 00:01:55,530 --> 00:01:56,210 Good. 34 00:01:56,210 --> 00:02:04,030 And P1, P3. 35 00:02:04,030 --> 00:02:06,500 We get again 0 minus a negative 1. 36 00:02:06,500 --> 00:02:11,540 So 1, we get minus 1, and then we get 1. 37 00:02:11,540 --> 00:02:13,120 Let me again check my notes. 38 00:02:13,120 --> 00:02:14,780 Very good. 39 00:02:14,780 --> 00:02:15,210 OK. 40 00:02:15,210 --> 00:02:18,220 So now that we have these vectors, we need to remember 41 00:02:18,220 --> 00:02:26,960 that if we take the absolute value of P1P2 cross product 42 00:02:26,960 --> 00:02:41,370 with P1P3, this will be equal to the area of the 43 00:02:41,370 --> 00:02:44,460 parallelogram they enclose. 44 00:02:44,460 --> 00:02:49,730 45 00:02:49,730 --> 00:02:52,750 So let's get started by computing this cross product. 46 00:02:52,750 --> 00:02:57,690 So P1P2 cross P2P3. 47 00:02:57,690 --> 00:03:01,940 48 00:03:01,940 --> 00:03:04,950 So remember to compute a cross product, we take the 49 00:03:04,950 --> 00:03:08,640 determinant of a matrix where we put in our unit normal 50 00:03:08,640 --> 00:03:11,290 vectors i, j, and k. 51 00:03:11,290 --> 00:03:14,540 And then we enter in, the remaining entries of the 52 00:03:14,540 --> 00:03:16,240 matrix are just the entries of our vectors. 53 00:03:16,240 --> 00:03:19,670 So we do 1, 2, 1. 54 00:03:19,670 --> 00:03:23,750 And 1, minus 1, 1. 55 00:03:23,750 --> 00:03:24,580 OK. 56 00:03:24,580 --> 00:03:26,220 And so we can compute this. 57 00:03:26,220 --> 00:03:29,640 58 00:03:29,640 --> 00:03:34,150 And we get-- so the i component, we get 2 minus a 59 00:03:34,150 --> 00:03:34,910 negative 1. 60 00:03:34,910 --> 00:03:37,740 So we get 3. 61 00:03:37,740 --> 00:03:39,190 Now the j component. 62 00:03:39,190 --> 00:03:43,590 If we look at the cofactor matrix, it's just 1, 1, 1, 1, 63 00:03:43,590 --> 00:03:45,210 and that has determinant 0. 64 00:03:45,210 --> 00:03:48,310 So our middle component is just 0. 65 00:03:48,310 --> 00:03:50,180 And finally the k component. 66 00:03:50,180 --> 00:03:53,430 We get minus 1, minus another 2. 67 00:03:53,430 --> 00:03:58,180 So altogether, we get minus 3. 68 00:03:58,180 --> 00:04:06,560 So what that tells us now is that this quantity here, the 69 00:04:06,560 --> 00:04:13,450 magnitude of the cross product, is just 3 times the 70 00:04:13,450 --> 00:04:16,280 square root of 2, just looking at the length 71 00:04:16,280 --> 00:04:17,530 of this vector here. 72 00:04:17,530 --> 00:04:19,900 73 00:04:19,900 --> 00:04:22,710 So we're almost done, but let's go back and look at what 74 00:04:22,710 --> 00:04:24,340 we had to start with. 75 00:04:24,340 --> 00:04:28,680 We were interested in the triangle over here which was 76 00:04:28,680 --> 00:04:34,470 enclosed by the vectors P1, P2, and the vectors P1, P3. 77 00:04:34,470 --> 00:04:41,810 And what we just computed is actually the area of this 78 00:04:41,810 --> 00:04:45,430 parallelogram, which as you can see is twice the area of 79 00:04:45,430 --> 00:04:47,530 the triangle that we're actually interested in. 80 00:04:47,530 --> 00:04:53,490 So going back over here, we see that the area of our 81 00:04:53,490 --> 00:05:00,390 triangle is equal to 3 root 2, and we just need to divide by 82 00:05:00,390 --> 00:05:02,730 2 to get the triangle. 83 00:05:02,730 --> 00:05:02,910 OK? 84 00:05:02,910 --> 00:05:04,740 And I'll leave it at that. 85 00:05:04,740 --> 00:05:04,905