0% found this document useful (0 votes)
4 views11 pages

Taller Matrices Inversas

The document contains a series of matrix operations including additions, multiplications, and inverses for various matrices labeled A through L. Each matrix is defined with its elements, followed by the results of operations performed on them. The results include products of matrices and inverses, showcasing the calculations and outputs for each operation.

Uploaded by

moramartin414
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views11 pages

Taller Matrices Inversas

The document contains a series of matrix operations including additions, multiplications, and inverses for various matrices labeled A through L. Each matrix is defined with its elements, followed by the results of operations performed on them. The results include products of matrices and inverses, showcasing the calculations and outputs for each operation.

Uploaded by

moramartin414
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

TALLER 1

>> A = [2 1;3 5]

A =

2 1

3 5

>> B = [2 7; 8 9]

B =

2 7

8 9

>> C = [3 7 6; -1 2 3; 4 0 1]

C =

3 7 6

-1 2 3

4 0 1

>> D = [3 7;6 8; 7 1]

D =

3 7

6 8

7 1
>> E = [6 4 -2; -1 0 -1; 3 6 -1]

E =

6 4 -2

-1 0 -1

3 6 -1

>> F = [4 5 6 7; 8 0 -1 2; 1 0 0 1]

F =

4 5 6 7

8 0 -1 2

1 0 0 1

>> G = [8 4 3 7 -1; 6 5 4 -1 2]

G =

8 4 3 7 -1

6 5 4 -1 2

>> H = [-7 0 -1 3; 0 0 -1 2; 0 -1 3 7]

H =

-7 0 -1 3

0 0 -1 2

0 -1 3 7
>> J = [0 1 2 3; 4 6 0 -1; 3 7 -1 0; 0 1 2 3]

J =

0 1 2 3

4 6 0 -1

3 7 -1 0

0 1 2 3

>> k = [0 -1 3 7; 0 -1 2 -1; 0 -1 3 0; 0 2 7 8]

k =

0 -1 3 7

0 -1 2 -1

0 -1 3 0

0 2 7 8

>> A*B

ans =

12 23

46 66

>> D*B

ans =

62 84

76 114

22 58
>> C*D

ans =

93 83

30 12

19 29

>> C*E

ans =

29 48 -19

1 14 -3

27 22 -9

>> C*F

ans =

74 15 11 41

15 -5 -8 0

17 20 24 29

>> A*G

ans =

22 13 10 13 0

54 37 29 16 7
>> C*H

ans =

-21 -6 8 _ 65

7 -3 8 22

-28 -1 -1 19

>> F*J

ans =

38 83 16 28

-3 3 21 30

0 2 4 6

>> J*k

ans =

0 3 29 23

0 -12 17 14

0 -9 20 14

0 3 29 23

>> F*k

ans =

0 -1 89 79

0 -3 35 72

0 1 10 15
TALLER 2

>> A = [3,10,-7;-4,-3,10;2,-2,5]

A =

3 10 -7

-4 -3 10

2 -2 5

>> A^(-1)

ans =

5/317 -36/317 79/317

40/317 29/317 -2/317

14/317 26/317 31/317

>> B = [1 2 -4; -2 -5 3; 1 4 6]

B =

1 2 -4

-2 -5 3

1 4 6

>> B^(-1)

ans =

1/0 1/0 1/0

1/0 1/0 1/0

1/0 1/0 1/0


>> C = [1 7 7; -1 -6 -4; -1 -6 -3]

C =

1 7 7

-1 -6 -4

-1 -6 -3

>> C^(-1)

ans =

-6 -21 14

1 4 -3

0 -1 1

>> D = [0 -4 5; -1 1 -3; -1 0 -2]

D =

0 -4 5

-1 1 -3

-1 0 -2

>> D^(-1)

ans =

-2 -8 7

1 5 -5

1 4 -4
>> E = [-3 -2; 8 5]

E =

-3 -2

8 5

>> E^(-1)

ans =

5 2

-8 -3

>> F = [5]

F =

>> F^(-1)

ans =

1/5

>> G = [-4 6 1; -2 1 -2; -3 3 -1]

G =

-4 6 1

-2 1 -2

-3 3 -1
>> G^(-1)

ans =

5 9 -13

4 7 -10

-3 -6 8

>> H = [-3 5 2; -1 0 3; -4 8 1]

H =

-3 5 2

-1 0 3

-4 8 1

>> H^(-1)

ans =

-24 11 15

-11 5 7

-8 4 5
>> I = [1 0 2; 2 -1 3; 4 1 8]

I =

1 0 2

2 -1 3

4 1 8

>> I^(-1)

ans =

-11 2 2

-4 0 1

6 -1 -1

>> J = [-3 19 36; -4 27 51; 0 -1 -2]

J =

-3 19 36

-4 27 51

0 -1 -2

>> J^(-1)

ans =

-3 2 -3

-8 6 9

4 -3 -5
>> K = [2 -8 9; 1 -4 5; 1 -5 -5]

K =

2 -8 9

1 -4 5

1 -5 -5

>> K^(-1)

ans =

45 -85 -4

10 -19 -1

-1 2 0

>> L = [1 7; 2 17]

L =

1 7

2 17

>> L^(-1)

ans =

17/3 -7/3

-2/3 1/3

You might also like