You are on page 1of 11

Transpose Matriks

1 3 1
2 1 4
2 5 2

1 2 2
3 1 5
1 4 2
Transpose Matriks
1 3 1
2 1 4
2 5 2

2
Transpose Matriks
1 3 1
2 1 4
2 5 2

-9 -0.5 5.5
2 0 -1
4 0.5 -2.5
1 3 1
A= 2 1 4
2 5 2
4 9 6
3 8 6
11 9 10
3 6 5
A= 1 7 2
9 4 8
UN-20E

A B C D E F G H I J
1 MATRICES IN EXCEL
2
3 Matrix C
4 (a column
5 Matrix A (a row vector) Matrix B (a square 3 x 3 matrix) vector)
6 2 3 4 13 -8 -3 13
7 -8 10 -1 -8
8 -3 -1 11 -3
9
10 Matrix D (a 4 x 3 matrix)
11 13 -8 -3
12 -8 10 -1
13 -3 -1 11
14 0 13 3
A B C D E F G H I
1 MATRIX OPERATIONS
2
3 Multiplication by a scalar
4
5 Scalar 6
6
7 Matrix B 13 -8 -3
8 -8 10 -1
9 -3 -1 11
10
11 Scalar * Matrix B
12 78 -48 -18 <-- =D7*$B$5
13 -48 60 -6
14 -18 -6 66
15
16
17 Addition of matrices
18
19 Matrix A Matrix B Sum of A + B
20 1 3 0.1 0 1.1 3 <-- =B20+E20
21 3 0 23 0 26 0
22 6 -9 8 -33.4 14 -42.4
23 5 11 -15 0 -10 11
24 7 12 2.33 1.2 9.33 13.2
25
26
27 Transposition of matrix
28
29 Matrix E Transpose of E = ET
30 1 2 3 4 1 0 16 The framed area contains
31 0 3 88 -9 2 3 7 the array function
32 16 7 7 2 3 88 7 =Transpose(A30:D32) .
33 4 -9 2 To use this function: Mark of
34 the whole area; put in the for
35 then finish by pressing
36 [Ctrl]+[Shift]+[Enter].
37
38
39 Multiplication of matrices
40
41 Matrix A Matrix B
42 2 -6 6 9 -12
43 -9 3 -5 2 4
44
45
46 Product AB
47 42 6 -48 <--Array contains formula
48 -69 -75 120 =MMULT(A42:B43,D42:F43)
49
A B C D E F G H I
50
51
52 Product BA -- this won't work
53 Err:502 <-- =MMULT(D42:F43,A42:B43)
J K L
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<-- =B20+E20
20
21
22
23
24
25
26
27
28
29
The framed
30 area contains
the array
31 function
=Transpose(A30:D32)
32 .
To use33 this function: Mark off
the whole
34 area; put in the formula,
then finish
35 by pressing
[Ctrl]+[Shift]+[Enter].
36
37
38
39
40
41
42
43
44
45
46
47
48
49
A B C D E F G H
1 MATRIX INVERSE
2
3 Matrix A Inverse of A: Array function Minverse(A4:D7)
4 1 -9 16 1 -0.0217 1.8913 0.5362
5 3 3 2 3 0.0000 -1.0000 -0.1667
6 2 4 0 -2 0.0652 -0.6739 -0.1087
7 5 7 3 4 -0.0217 -0.1087 -0.2971
8
9 Verifying the inverse
10 We multiply A*Inverse A: cells contain array function MMULT(A4:D7,F4:I7)
11 1 0 0 0
12 0 1 0 0
13 0 0 1 0
14 0 0 0 1
I J
1
2
Array function Minverse(A4:D7)
3
4 -1.1449
5 0.6667
6 0.4348
7 0.1884
8
9
10
11
12
13
14
A B C D E F G
1 SOLVING SIMULTANEOUS EQUATIONS
2
3 Column Solution
4 Matrix A of coefficients vector Y A-1 Y
5 3 4 66 16 0.4343
6 0 -33 1 77 -2.3223
7 42 3 2 12 0.3634
8
9
10 =MMULT(MINVERSE(A5:C7),E5:E7)
11
12 Checking that the solution works
13 16
14 77 Contains the array function
15 12 =MMULT(A5:C7,G5:G7)
16

You might also like