00:01
Okay, so we have a matrix a, which is an n by n square matrix.
00:05
And the elements within that matrix, we can designate by a sub i, j, or i is the row, j is the column.
00:14
Now, the question is, if we have four different situations here, and we want to know whether a is symmetric.
00:21
Well, if a is symmetric, that means that i can interchange the rows and the columns.
00:28
So the element in the i row j column is going to be the same as the element in the j row i column for, you know, and just as a reminder, what that looks like.
00:40
That means if i have, let me just put, you know, three by three, four, six, seven along the top.
00:45
I have six in the first row second column, which means i would also have to have six in the second row first column.
00:53
If i have seven out here, i would have to have seven here.
00:56
That is what makes this symmetric.
00:59
So let's take a look.
01:00
I'm going to look at each of these cases in turn.
01:02
I'm going to look at the i -jeth element and compare it to the j -i -th element.
01:10
That sounds kind of funny, but i'm going to switch the i's and the js.
01:15
If it's equally valid, no matter which way i look at it, this is symmetric.
01:19
If it's different, it's not.
01:21
So let's take our first case.
01:23
The first one says a sub i -j.
01:27
Is going to be, that element is going to be i squared plus j squared.
01:33
Well, what if i transpose or transpose the i and the j? now i've got j squared plus i squared.
01:41
Well, yes, these are the same...