-
Notifications
You must be signed in to change notification settings - Fork 0
/
TEMA04_chapter.tex
executable file
·2021 lines (1214 loc) · 95.5 KB
/
TEMA04_chapter.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\chapter{Determinantes}
\section{Determinantes ordenes 1 , 2 y 3}
\begin{defi}
El `determinante' es una aplicación que, para cada matriz cuadrada $A$ de orden $n$ le hace corresponder un número real que se denota por $det(A)$ o $|A|$:
\vspace{2mm}\centerline{\colorbox{LightYellow}{$\boxed{\; A\in \mathcal M_n \to det(A)=|A|\in \mathbb R\; }$}}
\vspace{3mm} --- Determinantes orden $1$: $A=[a_{11}] \to det(A)=|A|=|a_{11}|=a_{11}$
¡Cuidado! : No confundir $det(a_{11})=|a_{11}|$ con el valor absoluto $|a_{11}|$. De todos modos, los determinantes de orden uno no se suelen usar.
\vspace{3mm} --- Determinantes orden $2$: $A=\left[
\begin{array}{cc}
a_{11} & a_{12} \\
a_{21} & a_{22}
\end{array}
\right]
\to det(A)=|A|=\left|
\begin{array}{cc}
a_{11} & a_{12} \\
a_{21} & a_{22}
\end{array} \right|=$
$=\begin{array}{cc}
\textcolor{blue}{a_{11}} & a_{12} \\
a_{21} & \textcolor{blue}{a_{22}}
\end{array} \; -\;
\begin{array}{cc}
a_{11} & \textcolor{red}{a_{12}} \\
\textcolor{red}{a_{21}} & a_{22}
\end{array}
=\textcolor{blue}{a_{11}a_{22}} - \textcolor{red}{a_{12}a_{21}}$
\vspace{3mm} --- Determinantes orden $3$: `Regla de Sarrus'
$A=\left[ \begin{array}{ccc}
a_{11} & a_{12} & a_{13} \\
a_{21} & a_{22} & a_{23} \\
a_{31} & a_{32} & a_{33}
\end{array} \right] \to det(A)=|A|=$
$=\left|
\begin{array}{ccc}
a_{11} & a_{12} & a_{13} \\
a_{21} & a_{22} & a_{23} \\
a_{31} & a_{32} & a_{33}
\end{array}
\right|= \;
\begin{array}{ccc}
\textcolor{blue}{a_{11}} & \textcolor{DarkGreen}{a_{12}} & \textcolor{red}{a_{13}} \\
\textcolor{red}{a_{21}} & \textcolor{blue}{a_{22}} & \textcolor{DarkGreen}{a_{23}} \\
\textcolor{DarkGreen}{a_{31}} & \textcolor{red}{a_{32}} & \textcolor{blue}{a_{33}}
\end{array}
\; - \;
\begin{array}{ccc}
\textcolor{red}{a_{11}} & \textcolor{DarkGreen}{a_{12}} & \textcolor{blue}{a_{13}} \\
\textcolor{DarkGreen}{a_{21}} & \textcolor{blue}{a_{22}} & \textcolor{red}{a_{23}} \\
\textcolor{blue}{a_{31}} & \textcolor{red}{a_{32}} & \textcolor{DarkGreen}{a_{33}}
\end{array}
=$
$\quad$
\noindent $= \textcolor{blue}{a_{11}a_{22}a_{33}} + \textcolor{red}{a_{21}a_{32}a_{13}} + \textcolor{DarkGreen}{a_{31}a_{23}a_{12}} \; - \; (\textcolor{blue}{a_{13}a_{22}a_{31}} + \textcolor{red}{a_{23}a_{32}a_{11}} + \textcolor{DarkGreen}{a_{33}a_{21}a_{12})}$
\end{defi}
\begin{figure}[H]
\centering
\includegraphics[width=1\textwidth]{imagenes/imagenes04/T04IM03.png}
\end{figure}
\rule{30mm}{0.1mm}
Otra regla para recordar la regla de Sarrus consiste en repetir, al final del determinante las filas $1$ y $2$ y multiplicar los elementos de las diagonales (izquierda a derecha positivas, derecha a izquierda negativas).
$|A|=\left |
\begin{array}{ccc}
a_{11} & a_{12} & a_{13} \\
a_{21} & a_{22} & a_{23} \\
a_{31} & a_{32} & a_{33}
\end{array}
\right|=
\begin{array}{ccc}
\textcolor{blue}{a_{11}} & a_{12} & a_{13} \\
\textcolor{red}{a_{21}} & \textcolor{blue}{a_{22}} & a_{23} \\
\textcolor{DarkGreen}{a_{31}} & \textcolor{red}{a_{32}} & \textcolor{blue}{a_{33}} \\
a_{11} & \textcolor{DarkGreen}{a_{12}} & \textcolor{red}{a_{13}} \\
a_{21} & a_{22} & \textcolor{DarkGreen}{a_{23}} \\
\end{array} \; - \;
\begin{array}{ccc}
a_{11} & a_{12} & \textcolor{blue}{a_{13}} \\
a_{21} & \textcolor{blue}{a_{22}} & \textcolor{red}{a_{23}} \\
\textcolor{blue}{a_{31}} & \textcolor{red}{a_{32}} & \textcolor{DarkGreen}{a_{33}} \\
\textcolor{red}{a_{11}} & \textcolor{DarkGreen}{a_{12}} & a_{13} \\
\textcolor{DarkGreen}{a_{21}} & a_{22} & a_{23} \\
\end{array} =$
\noindent $\textcolor{blue}{a_{11}a_{22}a_{33}} + \textcolor{red}{a_{21}a_{32}a_{13}} + \textcolor{DarkGreen}{a_{31}a_{23}a_{12}} \; - \; (\textcolor{blue}{a_{13}a_{22}a_{31}} + \textcolor{red}{a_{23}a_{32}a_{11}} + \textcolor{DarkGreen}{a_{33}a_{21}a_{12})}$
Aunque es recomendable recordar la técnica anterior (mayor rapidez de cálculo mental).
\rule{30mm}{0.1mm}
\begin{ejem}
Calcula los determinantes de:
$A=[-7/4]; \; B=\left[ \begin{array}{cc} 3&-2\\5&2 \end{array} \right]; \; C=\left[ \begin{array}{ccc} 1 &2 &3 \\ -3&0&4 \\ 2&-1&3 \end{array} \right]$
\noindent $|A|=-7/4$
\noindent $|B|=3\cdot 2 - ((-2)\cdot 5)=6+10=16$
\noindent $|C|=1\cdot 0\cdot 3 + (-3)\cdot (-1)\cdot 3+ 2\cdot 4 \cdot 2 -(3\cdot 0 \cdot 2 + 4\cdot (-1)\cdot 1 + 3\cdot (-3)\cdot 2)=
0+9+16-(0-4-18)=25+22=47$
\end{ejem}
Para orden $4$ o superior, se recurre al desarrollo de Laplace para el cálculo de determinantes (no es válida la regla de Sarrus). Se verá en próximos apartados.
Obsérvese que para las matrices usamos paréntesis o corchetes $(a_{ij}) \text{ ó } [a_{ij}]\; $ y para los determinantes barras $|a_{ij}|$.
\section{Propiedades de los determinantes}.
Las propiedades que vamos a enunciar son válidas para determinantes de cualquier orden. Las demostraciones sobrepasan, con mucho, los objetivos de un curso de bachillerato; por lo que para cada una de ellas nos contentaremos con una mera comprobación con determinantes de ordenes $2$ o $3$, que son los que de momento, conocemos.
\begin{enumerate}[P.D. 1]
\item \colorbox{LightYellow}{$\boxed{\; |A|=|A^T|\; }$}. El determinante de una matriz coincide con el de su traspuesta.
\underline{Comprobación:} $|A|=\left | \begin{array}{cc} 3&-2\\5&4 \end{array} \right| = 12-(-10)=22$
$|A^T|=\left | \begin{array}{cc} 3&5\\-2&4 \end{array} \right| = 12-(-10)=22$
¡ A partir de esta propiedad, todo lo que se diga para `filas' valdrá para `columnas' y viceversa !
\item Si un determinante contiene \colorbox{LightYellow}{una fila (o columna) de ceros}, el determinante es cero
\underline{Comprobación:} $|M|=\left| \begin{array}{ccc} 1&2&3\\0&0&0\\-2&3&5 \end{array} \right|= 0+0+0-(0+0+0)=0$
¡Para abreviar, en adelante, nos referiremos a `líneas' de un determinante queriendo indicar filas o columnas!
En general:
$Det(c_1, c_2, \cdots, \textcolor{blue}{0}, \cdots , c_n)=0$, ó $Det(f_1, f_2, \cdots, \textcolor{red}{0}, \cdots , f_n)=\textcolor{DarkGreen}{0}$
Donde, con $c_1, c_2, \cdots, c_n$ queremos indicar las columnas de $M$, así como con $f_1,f_2, \cdots , f_n$ sus filas.
\item Si se \colorbox{LightYellow}{intercambian de posición dos líneas} de un determinante (dos filas o dos columnas), el determinante cambia de signo.
\underline{Comprobación:} $\left| \begin{array}{ccc} \textcolor{blue}{1}& \textcolor{blue}{2}& \textcolor{blue}{3}\\-2&0&3\\ \textcolor{red}{-2}& \textcolor{red}{3}& \textcolor{red}{5} \end{array} \right|=
0-18-12-(0+9-20)=-30-(-11)=-19$
$\left| \begin{array}{ccc} \textcolor{red}{-2}& \textcolor{red}{3}& \textcolor{red}{5} \\-2&0&3\\ \textcolor{blue}{1}& \textcolor{blue}{2}& \textcolor{blue}{3} \end{array} \right|=
0-20+9-(0-12-18)=-11-(-30)=19$
En general:
$Det(f_1, \cdots , \textcolor{blue}{f_i}, \cdots , \textcolor{red}{f_j} \cdots , f_n)=\textcolor{DarkGreen}- Det(f_1, \cdots , \textcolor{red}{f_j}, \cdots , \textcolor{blue}{f_i} \cdots , f_n)$
ó
$Det(c_1, \cdots , \textcolor{blue}{c_i}, \cdots , \textcolor{red}{c_j} \cdots , c_n)=\textcolor{DarkGreen}{-} Det(c_1, \cdots , \textcolor{red}{c_j}, \cdots , \textcolor{blue}{c_i} \cdots , c_n)$
\item A una línea (fila o columna) de un determinante, si se le \colorbox{LightYellow}{añade otra} \colorbox{LightYellow}{línea} (fila o columna) del mismo determinante multiplicada por un número, el determinante no varía.
En general:
\small{$Det(f_1, \cdots , \textcolor{blue}{f_i},\cdots , f_j, \cdots , f_n)= Det(f_1, \cdots , \textcolor{blue}{f_i}+ \textcolor{DarkGreen}{k}\cdot \textcolor{red}{f_j}, \cdots, f_j, \cdots , f_n)$}
\normalsize{ó}
\small{$Det(c_1, \cdots , \textcolor{blue}{c_i},\cdots , c_j, \cdots , c_n)= Det(c_1, \cdots , \textcolor{blue}{c_i}+ \textcolor{DarkGreen}{k}\cdot \textcolor{red}{c_j}, \cdots, c_j, \cdots , c_n)$}
\normalsize{\underline{Comprobación:}} $\left| \begin{array}{cc} 1&2\\3&4 \end{array} \right|=4-6=-2 \quad \textcolor{gris}{[\; F2 \to F2+5F1 \Rightarrow\; ]}$
$\left| \begin{array}{cc} \textcolor{blue}{1}&\textcolor{blue}{2}\\3+\textcolor{red}{5}\cdot \textcolor{blue}{1}&4+\textcolor{red}{5}\cdot \textcolor{blue}{2} \end{array} \right|=\left| \begin{array}{cc} 1&2\\8&14 \end{array} \right|=14-16=-2$
\item Si en un determinante hay una \colorbox{LightYellow}{línea igual o proporcional} a otra, el determinante es cero.
$Det(f_1, \cdots , \textcolor{blue}{f_i}, \cdots , \textcolor{red}{k} \cdot \textcolor{blue}{f_i}, \cdots , f_n)=0$
ó
$Det(c_1, \cdots , \textcolor{blue}{c_i}, \cdots , \textcolor{red}{k}\cdot \textcolor{blue}{c_i}, \cdots , c_n)=0$
\underline{Comprobación:}
$\; \left| \begin{array}{ccc} 1&-2&5\\-3&6&0 \\4&-8&-1 \end{array} \right|=
-6+120+0-(120+0-6)=
\left| \begin{array}{ccc} \textcolor{blue}{1}&\textcolor{red}{-2}\cdot \textcolor{blue}{1}&5\\\textcolor{blue}{-3}&\textcolor{red}{-2} \cdot \textcolor{blue}{(-3)}&0 \\\textcolor{blue}{4}&\textcolor{red}{-2} \cdot \textcolor{blue}{4}&-1 \end{array} \right|=0$, ya que $c2=2c1$
\item Producto de un \colorbox{LightYellow}{número por un determinante} o \colorbox{LightYellow}{`factor común'}:
$\textcolor{blue}{k}\cdot Det(f_1, \cdots , f_i, \cdots, f_j, \cdots , f_n)=
Det(f_1, \cdots , \textcolor{red}{k}\cdot f_i, \cdots, f_j, \cdots , f_n) =
Det(f_1, \cdots , f_i, \cdots, \textcolor{red}{k} \cdot f_j, \cdots , f_n)=
Det(\textcolor{red}{k} \cdot f_1, \cdots , f_i, \cdots, f_j, \cdots , f_n)= \cdots$
ó
$\textcolor{blue}{k}\cdot Det(c_1, \cdots , c_i, \cdots, c_j, \cdots , c_n)=
Det(c_1, \cdots , \textcolor{red}{k}\cdot c_i, \cdots, c_j, \cdots , c_n) =
Det(c_1, \cdots , c_i, \cdots, \textcolor{red}{k} \cdot c_j, \cdots , c_n)=
Det(\cdot c_1, \cdots , c_i, \cdots, c_j, \cdots , \textcolor{red}{k} c_n)= \cdots$
Esta propiedad, leída de derecha a izquierda, es la '`propiedad de factor común para determinantes': si en un determinante hay una línea (fila o columna) multiplicada por un número, éste puede salir fuera del determinante multiplicando.
\underline{Comprobación:} $\textcolor{blue}{5}\cdot \left| \begin{array}{cc} 1&2\\3&4 \end{array} \right|=5\cdot (4-6)=\textcolor{blue}{5}\cdot (-2)=-10$
$\left| \begin{array}{cc} \textcolor{blue}{5}\cdot 1&\textcolor{blue}{5}\cdot 2\\3&4 \end{array} \right|=\left| \begin{array}{cc} 5&10\\3&4 \end{array} \right|=20-30=-10$
$\left| \begin{array}{cc} 1&\textcolor{blue}{5}\cdot 2\\3&\textcolor{blue}{5} \cdot 4 \end{array} \right|=\left| \begin{array}{cc} 1&10\\3&20 \end{array} \right|=20-30=-10$
Vista como factor común: $ \left| \begin{array}{cc} 10&2\\60&8 \end{array} \right|=80-120=-40$, pero
$ \left| \begin{array}{cc} 10&2\\60&8 \end{array} \right| = \left| \begin{array}{cc} \textcolor{blue}{10}\cdot 1&2\\\textcolor{blue}{10} \cdot 6&8 \end{array} \right| = \textcolor{blue}{10} \cdot \left| \begin{array}{cc} 1&2\\6&8 \end{array} \right| =
\textcolor{blue}{10} \cdot \left| \begin{array}{cc} 1&2\\\textcolor{red}{2}\cdot 3&\textcolor{red}{2} \cdot 4 \end{array} \right|= \textcolor{blue}{10}\cdot \textcolor{red}{2} \cdot \left| \begin{array}{cc} 1&2\\3&4 \end{array} \right|= \textcolor{blue}{10}\cdot \textcolor{red}{2} \cdot (4-6)=10\cdot 2\cdot (-2)=-40$
IMPORTANTE: Si $A$ es una matriz cuadrada de orden $n$ (n-filas y n-columnas), como $k\cdot A$ consiste en multiplicar por $k$ TODAS las filas (columnas) de $A$, para calcular su determinante, podemos sacar $n$-veces el número $k$ factor común de cada una de sus filas (columnas), por lo que:
\vspace{2mm} \centerline{\colorbox{LightYellow}{$\boxed{\;k\in \mathcal M_n \to det(k\cdot A)= k^n\cdot |A|\; }$}}
Nótese la diferencia de $k[A]$ y $k|A|$, el primer producto es el de un número por una matriz y el número multiplica a todos los elementos de la matriz, en el segundo caso tenemos el producto de un número por un determinante y solo se multiplica el número por una sola de sus líneas (filas o columnas).
\item Se pueden \colorbox{LightYellow}{sumar dos determinantes} de matrices del mismo tipo si las matrices son en todos sus elementos iguales excepto en una de sus líneas (fila o columna), siendo ésta la que se suma. Vista la propiedad al revés, permite descomponer un determinante como suma de otros dos en todo iguales excepto en una de sus líneas.
Generalización a determinantes de orden 3:
$\left| \begin{array}{ccc} a&b&c \\ \textcolor{blue}{x_1}&\textcolor{blue}{y_1}&\textcolor{blue}{z_1} \\ u&v&w \end{array} \right| +
\left| \begin{array}{ccc} a&b&c \\ \textcolor{red}{x_2}&\textcolor{red}{y_2}&\textcolor{red}{z_2} \\ u&v&w \end{array} \right| =
\left| \begin{array}{ccc} a&b&c \\ \textcolor{blue}{x_1}+\textcolor{red}{x_2}&\textcolor{blue}{y_1}+\textcolor{red}{y_2}&\textcolor{blue}{z_1}+\textcolor{red}{z_2} \\ u&v&w \end{array} \right|$
\underline{Comprobación:} $\; \left| \begin{array}{cc} \textcolor{red}{4}+ \textcolor{blue}{2} \;\textcolor{gris}{(=6)}&7\\ \textcolor{red}{-3}+ \textcolor{blue}{5} \;\textcolor{gris}{(=2)}&2 \end{array} \right| =
\left| \begin{array}{cc} \textcolor{red}{4}&7\\ \textcolor{red}{-3}&2 \end{array} \right|+
\left| \begin{array}{cc} \textcolor{blue}{2} &7\\ \textcolor{blue}{5} &2 \end{array} \right|
=$
$= 12-14 = \boldsymbol{-2}= 8-(-21) \; + \; 4-(35)=29\; - \; 31 =\boldsymbol{-2} $
\item El \colorbox{LightYellow}{determinante de una matriz triangular} es el producto de los elementos de la diagonal principal.
En general: $\displaystyle \left| \begin{array}{cccc} a_{11} & a_{2n} & \cdots &a_{2n} \\ 0&a_{22}&\cdots&a_{2n} \\0&\vdots & \ddots & \vdots \\ 0 & 0& \cdots & a_{nn} \end{array} \right| =
a_{11} \cdot a_{22} \cdots a_{nn}=\prod_{i=1}^n a_{ii}$
\underline{Comprobación:} $\left| \begin{array}{ccc}
\textcolor{blue}{5}&\textcolor{red}0&\textcolor{red}0\\ -3&\textcolor{blue}{2}&\textcolor{red}0 \\4&-3&\textcolor{blue}{2} \end{array} \right|= \textcolor{blue}{5} \cdot \textcolor{blue}{2} \cdot \textcolor{blue}{2} +0+0-(0+0+0)=20$
\emph{Consecuencia:} \colorbox{LightYellow}{$\; \boxed {\; |I|=1\; }$}
\item El determinante del producto es igual al producto de los determinantes:
$\quad$\colorbox{LightYellow}{$\; \boxed {\; |A\cdot B|= |A| \cdot |B| \; }$}
\underline{Comprobación:} $A=\left[ \begin{array}{cc} 1&2\\3&4 \end{array} \right]; \quad B=\left[ \begin{array}{cc} 1&-1\\0&2 \end{array} \right] \to$
\noindent --- $A\cdot B= \left[ \begin{array}{cc} 1&3\\3&5 \end{array} \right] \to det(A\cdot B)= 5-9=\boldsymbol{-4}$
\noindent --- $det(A)=4-6=-2; \; det(B)=2-0=2 \to det(A) \cdot det(B)=(-2)\cdot 2=\boldsymbol{-4}$
\item Como corolarios a la propiedad anterior: `el determinante de la potencia es la potencia del determinante' y `el determinante de la inversa es la inversa del determinante':
Como $A^n=A\cdot A \cdot \underset{\text{n-veces}}{\cdots} \cdot A $ y la propiedad anterior, deducimos que:
\vspace{2mm} \centerline{\colorbox{LightYellow}{$\; \boxed {\; |A^{n}|= |A|^n \; }$}}
De $A\cdot A^{-1}=I; \quad |I|=1$ y la propiedad anterior, deducimos que:
\vspace{2mm} \centerline{\colorbox{LightYellow}{$\; \boxed {\; |A^{-1}|= \dfrac {1}{|A|} \; }$}}
\end{enumerate}
\normalsize{En ejercicios se verán aplicaciones las propiedades de los determinantes.}
\begin{myexampleblock}{La historia de los determinantes}
\small{Los determinantes hicieron su aparición en las matemáticas más de un siglo antes que las matrices. El término matriz fue creado por James Joseph Sylvester.}
\small{\vspace{1mm} Algunos de los más grandes matemáticos de los siglos XVIII y XIX contribuyeron al desarrollo de las propiedades de los determinantes. La mayoría de los historiadores coinciden en afirmar que la teoría de los determinantes se originó con el matemático alemán Gottfried Wilhelm Leibniz (1646-1716). Leibniz empleó los determinantes en 1693 con relación a los sistemas de ecuaciones lineales simultáneas. No obstante hay quienes creen que el matemático japonés Seki Kowa hizo lo mismo unos años antes.}
\small{\vspace{1mm} Las contribuciones más prolíficas a la teoría de los determinantes fueron las del matemático francés Agustin-Louis Cauchy (1789-1857). Cauchy escribió, en 1812 una memoria de 84 páginas que contenía la primera demostración de la fórmula $\; |A\cdot B|=|A|\cdot |B|$}
\small{\vspace{1mm} Hay algunos otros matemáticos que merecen ser mencionados aquí. El desarrollo de un determinante por cofactores fue empleado por primera vez por el matemático francés Pierre de Laplace (1749-1827).}
\small{\vspace{1mm} Un contribuyente principal en la teoría de los determinantes fue el matemático alemán Carl Gustav Jacobi (1804-1851). Fue él con quien la palabra “determinante” ganó la aceptación definitiva.}
\rightline{\footnotesize{\emph{Fuente: Wikipedia}}\normalsize{.}}
\end{myexampleblock}
\justify
\section[Menor complementario y adjunto. Desarrollo de Laplace]{Menor complementario y adjunto. Desarrollo de Laplace}\sectionmark{Menores y adjuntos}
\sectionmark{Menores y adjuntos}
Para poder calcular determinantes de orden mayor que $3$ hemos de introducir los conceptos de `menor complementario' y `adjunto' de un elemento de una matriz cuadrada.
\begin{defi}
Sea $A\in \mathcal M_{n\times n}$ una matriz cuadrada de orden $n$. Para cualquier elemento $a_{ij} \in A$ se define su `menor' correspondiente, y se representa por $M_{ij}$ al determinantes de orden $n-1$ que queda al eliminar de $A$ la fila$-i$ y la columna$-j$ .
Se llama `adjunto o cofactor' de $a_{ij}$ y se representa por $A_{ij}$ al menor $M_{ij}$ multiplicado por $1$ o $-1$ según sea la paridad de la suma de índices $i$ y $j$, es decir:
\centerline{\colorbox{LightYellow}{$\; \boxed{\; A_{ij}= (-1)^{i+j} \cdot M_{ij} \;}\;$}}
\end{defi}
\begin{ejem}
Sea $A=\left( \begin{matrix} 1&2&3\\4&5&6\\7&8&9 \end{matrix} \right)$. Calcula $M_{12};\; A_{12};\; M_{23};\; A_{23};\; M_{31};\; A_{31}$
$M_{12}=\left| \begin{matrix} \cancel{1}& \boxed{\cancel{2}}&\cancel{3}\\4&\cancel{5}&6\\7&\cancel{8}&9 \end{matrix} \right|=
\left| \begin{matrix} 4&6\\7&9 \end{matrix} \right|= 36-28=8\; $ \scriptsize{(tachamos fila 1 y columna 2)}\normalsize{.}
$A_{12}=(-1)^{1+2}\cdot M_{12}=(-1)^3\cdot 8=-8$
$M_{23}=\left| \begin{matrix} 1&2&\cancel{3}\\\cancel{4}&\cancel{5}& \boxed{\cancel{6}} \\7&8&\cancel{9} \end{matrix} \right|=
\left| \begin{matrix} 1&2\\7&8 \end{matrix} \right|=
8-14=-6 $ \scriptsize{(tachamos fila 2 y columna 3)}\normalsize{.}
$A_{23}=(-1)^{2+3}\cdot M_{2,3}=(-1)^5\cdot (-6)=6$
$M_{31}=\left| \begin{matrix} \cancel{1}&2&3\\ \cancel{4}&5&6\\ \boxed{\cancel{7}} &\cancel{8}&\cancel{9} \end{matrix} \right|
\left| \begin{matrix} 2&3\\5&6 \end{matrix} \right| = 12-15=-3 $
$A_{31}=(-1)^{3+1}\cdot M_{31}=(-1)^4\cdot (-3)=-3$
\end{ejem}
\begin{defi}
Dada una matriz cuadrada $A$ se llama `matriz adjunta' a la que resulta de reemplazar en $A$ cada elemento $a_{ij} $ por su correspondiente adjunto $A_{ij}$. Así, p.e., para una matriz de orden 3:
$A=\left[ \begin{matrix} a_{11}&a_{12}&a_{13}\\a_{21}&a_{22}&a_{23}\\a_{31}&a_{32}&a_{33} \end{matrix} \right] \Rightarrow \; \;
ad(A)=\left[ \begin{matrix} A_{11}&A_{12}&A_{13}\\A_{21}&A_{22}&A_{23}\\A_{31}&A_{32}&A_{33} \end{matrix} \right]$
\end{defi}
\begin{ejem} $A=\left[ \begin{matrix} 1&2&3 \\ 4&5&6 \\ 7&8&9 \end{matrix} \right]$, calcula su matriz adjunta.
$A_{11}=(-1)^{1+1}\; M_{11} =\left| \begin{matrix} 5&8\\8&9 \end{matrix} \right| = 45-64=-19$
$A_{12}=(-1)^{1+2}\; M_{12} =- \left| \begin{matrix} 4&6\\7&9 \end{matrix} \right| =- (36-42)=-(-6)=6$
$A_{13}=(-1)^{1+3}\; M_{13} =\left| \begin{matrix} 4&5\\7&8 \end{matrix} \right| = 32-35=-3$
$A_{21}=(-1)^{2+1}\; M_{21} =-\left| \begin{matrix} 2&3\\8&9 \end{matrix} \right| = -(18-24)=-(-6)=6$
$A_{22}=(-1)^{2+2}\; M_{22} =\left| \begin{matrix} 1&3\\7&9 \end{matrix} \right| = 9-21=-12$
$A_{23}=(-1)^{2+3}\; M_{23} =-\left| \begin{matrix} 1&2\\7&8 \end{matrix} \right| = -(8-14)=-(-6)=6$
$A_{31}=(-1)^{3+1}\; M_{31} =\left| \begin{matrix} 2&3\\5&6 \end{matrix} \right| = 12-15=-3$
$A_{32}=(-1)^{3+2}\; M_{32} =- \left| \begin{matrix} 1&3\\4&6 \end{matrix} \right| = -(6-12)=-(-6)=6$
$A_{33}=(-1)^{3+3}\; M_{33} =\left| \begin{matrix} 1&2\\4&5 \end{matrix} \right| = 5-8=-3$
Luego: $\; \; ad(A)=\left[ \begin{matrix} -19&6&-3\\6&-12&6\\-3&6&-3\end{matrix} \right]$
\end{ejem}
El siguiente teorema, que daremos sin demostración, permite calcular el determinante de cualquier matriz cuadrada de orden $n$ \textcolor{gris}{($\forall n \in \mathbb N$)} en función, eso sí, de $n$ determinantes de orden $n-1$. Se trata del `desarrollo de Laplace'.
\begin{teor}{Desarrollo de Laplace de un determinante.}
El determinante de una matriz se puede desarrollar como suma de los productos de los elementos de una línea (fila o columna) cualquiera por sus correspondientes adjuntos.
Sea $A=\left[
\begin{matrix}
a_{11} & a_{12} & \cdots & a_{1j} & \cdots & a_{1n} \\
a_{21} & a_{22} & \cdots & a_{2j} & \cdots & a_{2n} \\
a_{31} & a_{32} & \cdots & a_{3j} & \cdots & a_{3n} \\
\vdots & \vdots & \ddots & \vdots & \ddots & \vdots \\
a_{i1} & a_{i2} & \cdots & a_{ij} & \cdots & a_{in} \\
\vdots & \vdots & \ddots & \vdots & \ddots & \vdots \\
a_{m1} & a_{m2} & \cdots & a_{mj} & \cdots & a_{mn} \\
\end{matrix}
\right] \Rightarrow$
\vspace{3mm} $|A|=a_{11}A_{11}+a_{12}A_{12}+\cdots +a_{1n}A_{1n} \text{ (desarrollo primera fila) }= $
$=a_{13}A_{13}+a_{23}A_{23}+\cdots +a_{n3}A_{n3} \text{ (desarrollo tercera columna) } = $
$=a_{1j}A_{1j}+a_{2j}A_{2j}+\cdots +a_{nj}A_{nj} \text{ desarrollo columna-j )}= \displaystyle \sum_{k=1}^n a_{kj}A_{kj} =$
$=a_{i1}A_{i1}+a_{i2}A_{i2}+\cdots +a_{in}A_{in} \text{ (desarrollo fila-i) } = \displaystyle \sum_{k=1}^n a_{ik}A_{ik}=etc$
\end{teor}
\begin{ejem} Usando el desarrollo de Laplace:
Calcula: $a)\; \left| \begin{matrix} 1&2&3\\4&5&6\\7&8&9 \end{matrix} \right|; \quad b)\;
\left| \begin{matrix} 1&0&3&-1\\0&2&-1&-2\\2&0&5&2 \\ 0&0&-3&1 \end{matrix} \right|\quad c)\; \left| \begin{matrix} 1&5\\-3&3 \end{matrix} \right|$
----- Cálculo del $|A|$ :
* por adjuntos de la tercera columna:
$|A|=
3\cdot (-1)^{3+1}\cdot \left| \begin{matrix} 4&5 \\ 7&8 \end{matrix} \right| +
6\cdot (-1)^{3+2}\cdot \left| \begin{matrix} 1&2 \\ 7&8 \end{matrix} \right|+
9\cdot (-1)^{3+3}\cdot \left| \begin{matrix} 1&2 \\ 4&5 \end{matrix} \right|
=
3\cdot (+1) \cdot (32-35) + 6\cdot (-1) (8-14) + 9 \cdot (+1) \cdot (5-8)=
-9 +36 -27=0$
* por adjuntos de la segunda fila:
$|A|=4\cdot (-1)^{2+1}\left| \begin{matrix} 2&3\\8&9 \end{matrix} \right| +
5\cdot (-1)^{2+2}\cdot \left| \begin{matrix} 1&3\\7&9 \end{matrix} \right|+
6\cdot (-1)^{2+3}\cdot \left| \begin{matrix} 1&2\\7&8 \end{matrix} \right|=
4\cdot (-1) \cdot (18-24) + 5\cdot (+1)\cdot (9-21) + 6 \cdot (-1) (8-14)=
24-60+36 =0 $
* por Sarrus, evidentemente, también dará cero:
$A= 45+96+84-(105+48+72)=225-225=0$
----- Cálculo del $|B|$:
* por adjuntos de la tercera fila:
$|B|= 2\cdot (-1)^{3+1}\; \left| \begin{matrix} 0&3&-1\\2&-1&2\\0&-3&1 \end{matrix} \right| +
\cancelto{0}{\boldsymbol{0} \cdot (-1)^{3+2} \; \left| \begin{matrix} 1&3&-1\\0&-1&2\\0&-3&1 \end{matrix} \right|} +$
$+5 \cdot (-1)^{3+3}\; \left| \begin{matrix} 1&0&-1\\0&2&2\\0&0&1 \end{matrix} \right|+
2 \cdot (-1)^{3+4} \; \left| \begin{matrix} 1&0&3\\0&2&-1\\0&0&-3 \end{matrix} \right|= $
$=2\cdot(+1) \cdot (0+6+0-(0+0+6)) +0+$
$+5\cdot(+1)\cdot (2+0+0-(0+0+0)) + 2\cdot (-1) \cdot (-6+0+0-(0+0+0))=$
$=0 \; + \; 0 \; + \; 10 \; + \; 12 = \; \boldsymbol{22} $
\scriptsize{Los dos últimos Sarrus son determinantes de matrices triangulares, luego son iguales al producto de los elementos de la diagonal principal, con lo que se ahorra tiempo de cálculo}\normalsize{.}
Nótese que, como `estrategia', es conveniente hacer el desarrollo de Laplace por los elementos de la línea que contenga más ceros, lo que hará que tengamos que calcular menos determinantes, por ello:
* por adjuntos de la segunda columna:
$|B|= 0\; + \; 2 \cdot (1-)^{2+2} \cdot \left| \begin{matrix} 1&3&-1\\2&5&2\\0&-3&1 \end{matrix} \right|\; + 0 \; + \; 0=$
$=2\cdot (5+6+0-(0-6+6))= 2 \cdot 11 = \boldsymbol {22}$
----- Cálculo de $|C|$:
* por adjunto segunda columna:
$|C|= 5 \cdot (-1)^{1+2} |-3|+ 3\cdot (-1)^{2+2}\cdot |1|= 5(-1)(-3)+3\cdot 1\cdot 1=15+3=\boldsymbol{18}$
* por adjuntos de la primera fila:
$|C|= 1\cdot (-1)^{1+1}\;|3|+5\cdot (-1)^{1+2}\; |-3| = 3+15=\boldsymbol{18}$
* por la definición: $|C|=3-(-15)=\boldsymbol{18}$
\end{ejem}
\vspace{-4mm}%****************************
\subsection{Método Chio}
\vspace{-2mm}%****************************
\begin{myblock}{Método Chio}
\begin{multicols}{2}
\small{Utilizando las propiedades de los determinantes se trata de hacer ceros en todos los elementos de una línea excepto uno de ellos, para luego desarrollarlo por los adjuntos de esa línea}\normalsize{}.
\begin{figure}[H]
\centering
\includegraphics[width=0.3\textwidth]{imagenes/imagenes04/T04IM01.png}
\end{figure}
\end{multicols}
\end{myblock}
\vspace{4mm}
\begin{ejem}
Calcula: $\left|
\begin{matrix}
1&2&3&4\\-1& \boldsymbol{0}&1&2\\2&\boldsymbol{0}&1&1\\2&2&-2&3&
\end{matrix}
\right|=\; [F4 \to F4-F1]\; =$
$\left|
\begin{matrix}
1&2&3&4\\-1&\boldsymbol{0}&1&2\\2&\boldsymbol{0}&1&1\\1&\boldsymbol{0}&-5&1&
\end{matrix}
\right|= 2 \; (-1)^{1+2} \; \left|
\begin{matrix}
-1&1&2\\2&1&1\\1&-5&-1
\end{matrix}
\right|= \text{ (Sarrus) }=$
$ = 2\; (-1)\; (-23) = \boldsymbol{46}$
\vspace{4mm}
\underline{Observación 1}: No confundir las propiedades de los determinantes por las transformaciones de Gauss: Gauss permite cambiar una fila por un número ($\neq 0$) multiplicada por ella más un número por otra; en los determinantes se puede cambiar una fila (o columna) por `ella misma' (multiplicada por `+1') más un número por otra fila (o columna). \underline{La línea a cambiar} \underline{en un determinante no puede estar multiplicada por ningún número distinto} \underline{ de la unidad positiva} (ni siquiera se puede tomar para restar)
\footnotesize{\textcolor{gris}{$\begin{array}{lll} *\; \* Fi \to Fi-3Fj \quad \text{Bién} \\
*\; \* Fi \to 3Fj-Fi \quad \text{Mal: }\; (-1)\cdot Fi \\
*\; \* Fi \to 2Fi+3Fj \quad \text{Mal: }\; 2\cdot Fi \end{array}$}}\normalsize{.}
\underline{Observación 2}: Hay una gran diferencie entre el producto de un número por una matriz $k\cdot(A)$, en que se multiplican TODOS los elementos de la matriz por $k$ y el producto de un número por un determinantes, $k\cdot |A|$, que consiste en elegir UNA SOLA LÍNEA de $A$ (fila o columna) y multiplicar sus elementos por $k$ (recuérdese lo dicho en la propiedad P.D. 6 de determinantes).
\underline{Observación 3}: Para buscar `ceros' en una columna, combinamos filas. Para buscar `ceros' en una fila, combinamos columnas (Ver en problemas resueltos).
\end{ejem}
\vspace{10mm}
\begin{myexampleblock}{Aplicaciones geométricas de los determinantes}
%\vspace{10mm}
\begin{figure}[H]
\centering
\includegraphics[width=1\textwidth]{imagenes/imagenes04/T04IM04.png}
\end{figure}
Área del triángulo de vértices $A(x_1,y_1),\; B(x_2,y_2),\; C(x_3,y_3)$
Sea $\Delta = \left| \begin{matrix} x_1&x_2&x_3 \\ y_1&y_2&y_3\\1&1&1 \end{matrix} \right|$, entonces,
Área $S_{ABC}= \dfrac 1 2 \; abs \; \Delta = \dfrac 1 2 \;|\Delta|$ (la mitad del valor absoluto del determinante $\Delta$).
Volumen de un tetraedro de vértices $A(x_1,y_1,z_1),\; B(x_2,y_2,z_2),$
\noindent $C(x_3,y_3,z_3), \; D(x_4,y_4,z_4)$.
\centerline{Vol. $V=\dfrac 1 6\; abs\; \left( \left| \begin{matrix} x_1&y_1&z_1&1 \\ x_2&y_2&z_2&1 \\ x_3&y_3&z_3&1 \\ x_4&y_4&z_4&1 \end{matrix} \right| \right)$}
\end{myexampleblock}
\justify
\section{Inversa de una matriz por adjuntos}
Ea ahora cuando vamos a desarrollar un método más potente que el de Gauss para el cálculo de la inversa de una matriz cuadrada. Además, este método nos dice si dada una matriz cuadrada cualquiera tiene inversa. (Lo exponemos como un teorema sin demostración).
\begin{teor}{Inversa por adjuntos.}
$\forall A\in \mathcal M_{n \times n}(\mathbb R): \; \exists A^{-1} \Leftrightarrow |A|\neq 0 \; \text{ además } \;$ \colorbox{LightYellow}{$\boxed{\; A^{-1}=\dfrac 1 {|A|}\; ad(A^T)\; }$}
La inversa de una matriz es uno partido por su determinante \textcolor{gris}{(claro, si el determinantes es cero, no hay inversa)} de la matriz adjunta de la matriz traspuesta. --Puesto que las operaciones de trasposición y adjunto conmutan (se puede comprobar, hágase) algunos autores hablan de la traspuesta de la matriz adjunta-- $[\;ad(A^T)=(ad A)^T \;]$.
\end{teor}
\begin{defi}
Dada $A\in \mathcal M_{n}:$
si $|A|=0 \to \nexists A^{-1} \Rightarrow $ se dice que $A$ es `singular'.
si $|A|\neq 0 \to \exists A^{-1} \Rightarrow $ se dice que $A$ es `regular o invertible'.
\end{defi}
\begin{ejem}
En el tema anterior, en el apartado de calculo de inversas de matrices por Gauss, vimos:
$B=\left[\begin{matrix} 1&0&2\\3&1&-1\\-2&1&5 \end{matrix}\right] \to B^{-1}=
\dfrac 1 {16} \left[ \begin{matrix} 6&2&-2 \\ -13&9&7 \\5&-1&1 \end{matrix} \right]$
Comprobemos que obtenemos el mismo resultado por el método de los adjuntos: $B^{-1}=\dfrac 1 {|B|}\; ad(B^T)$:
El \underline{primer caso} es calcular $|B|$, puesto que si es $0$ la matriz será singular o no invertible y habríamos acabado.
Por Sarrus: $|B|=5+6+0-(-4-1+0)=11-(-5)=16\neq 0 \to \exists B^{-1}$
El \underline{segundo paso} es calcular la traspuesta de $B$, no se nos vaya a olvidar \textcolor{gris}{(se puede calcular después del cálculo de la matriz adjunta, como hemos dicho anteriormente, puesto que trasposición y adjunto son operaciones que conmutan)}
$B^T=\left[\begin{matrix} 1&3&-2\\0&1&1\\2&-1&5 \end{matrix}\right]$. Como \underline{tercer paso}, vamos a calcular $ad(B^T)$
$B^T_{11}= (-1)^{1+1}\; \left| \begin{matrix} 1&1\\-1&5 \end{matrix} \right|=
(5-(-1))=6$
$B^T_{12}= (-1)^{1+2}\; \left| \begin{matrix} 0&1\\2&5 \end{matrix} \right|=
-(0-(2))=2$
$B^T_{13}= (-1)^{1+3}\; \left| \begin{matrix} 0&1\\2&-1 \end{matrix} \right|=
(0-(2))=-2$
$B^T_{21}= (-1)^{2+1}\; \left| \begin{matrix} 3&-2\\-1&5 \end{matrix} \right|=
-(15-(2))=-13$
$B^T_{22}= (-1)^{2+2}\; \left| \begin{matrix} 1&-2\\2&5 \end{matrix} \right|=
(5-(-4))=9$
$B^T_{23}= (-1)^{2+3}\; \left| \begin{matrix} 1&3\\2&-1 \end{matrix} \right|=
-(-1-(6))=7$
$B^T_{31}= (-1)^{3+1}\; \left| \begin{matrix} 3&-2\\1&1 \end{matrix} \right|=
(3-(-2))=5$
$B^T_{32}= (-1)^{3+2}\; \left| \begin{matrix} 1&-2\\0&1 \end{matrix} \right|=
-(1-(0))=-1$
$B^T_{33}= (-1)^{3+3}\; \left| \begin{matrix} 1&3\\0&1 \end{matrix} \right|=
(1-(0))=1$
Por lo que $B^{-1}=
\dfrac 1 {16} \left[ \begin{matrix} 6&2&-2 \\ -13&9&7 \\5&-1&1 \end{matrix} \right]$, que coincide con la calculada por el método de Gauss, como era de esperar.
\end{ejem}
\underline{Nota}: Hemos llamado $A$ a una matriz (cuadrada), $a_{ij}$ a sus elementos; $M_{ij}$ a sus menores y $A_{ij}$ a sus adjuntos. El problema surge cuando hablemos de matrices $M$. Proponemos la solución de que $m_{ij}$ sean sus elementos, $M_{ij}$ los menores, entonces a los adjuntos les llamaremos $\boldsymbol{M}_{ij}$ ó $ad_{ij}$.
\begin{figure}[]
\centering
\includegraphics[width=0.8\textwidth]{imagenes/imagenes04/T04IM02.png}
\end{figure}
\begin{teor}{Propiedades de la matiz inversa}
Recordemos las propiedades de la matriz inversa vistas en el capítulo anterior:
Definición: $AA^{-1}=A^{-1}A=I\quad $
Cálculo: $A^{-1}=\dfrac 1 {|A|}\; ad(A^T)$
\begin{multicols}{2}
\begin{enumerate}
\item $(A^{-1})^{-1}=A$
\item $(k\cdot A)^{-1}= \dfrac 1 k \; A^{-1}$
\item $(A\cdot B)^{-1}=B^{-1} \cdot A^{-1}$
\item $(A^T)^{-1}=(A^{-1})^T$
\end{enumerate}
\end{multicols}
\end{teor}
\subsection{Ecuaciones matriciales}
Son ecuaciones y sistemas en que las incógnitas (y quizás también los coeficientes) son matrices. $X,\; Y, \; \cdots $ son matrices incógnita, $A,\; B, \; C, \; \cdots $ son datos (matrices).
Este tipo de ejercicios constará usualmente de dos partes: despejar teóricamente la incógnita (si es posible) y realizar las operaciones indicadas a que se ha llegado al despejar.
--- * Sistemas de ecuaciones matriciales lineales:
$\begin{cases} aX+bY=M\\cX+dY=N \end{cases}$, con $a,b,c,d \in \mathbb R$, coeficientes reales y $X,Y,M,N \in \mathcal M (\mathbb R)$, siendo $X$ e $Y$ las matrices incógnita y $M$ y $N$ matrices conocidas (datos).
Se resuelven, teóricamente, como si se tratase de sistemas de ecuaciones lineales cualesquiera y, es después, cuando se realizan las operaciones matriciales necesarias para la solución del sistema.
\begin{ejem} Resuelve $\begin{cases} X-2Y=\left( \begin{matrix} 1&0\\1&1 \end{matrix} \right) \\ X+3Y=\left( \begin{matrix} 0&2\\4&-3 \end{matrix} \right) \end{cases}$
Si a la segunda ecuación le restamos la primera:
$\boldsymbol{Y}=\left( \begin{matrix} 0&2\\4&-3 \end{matrix} \right) -\left( \begin{matrix} 1&0\\1&1 \end{matrix} \right)=\boldsymbol{ \left( \begin{matrix} -1&2 \\3&-4 \end{matrix} \right)}$
Sustituyendo en la primera ecuación:
$\boldsymbol{ X}=\left( \begin{matrix} 1&0\\1&1 \end{matrix} \right)+2Y=$
$=\left( \begin{matrix} 1&0\\1&1 \end{matrix} \right)+2\left( \begin{matrix} -1&2 \\3&-4 \end{matrix} \right)=
\left( \begin{matrix} 1&0\\1&1 \end{matrix} \right)
+\left( \begin{matrix} -2&4 \\6&-8 \end{matrix} \right)=
\boldsymbol{ \left( \begin{matrix} -1&4\\7&-7 \end{matrix} \right)}$
\end{ejem}
--- * Ecuaciones matriciales:
Son ecuaciones en que tanto coeficientes como incógnitas son matrices.
$AX=B \to \text{ si } \exists A^{-1} \; \therefore \; $ `premultiplicando por $A^{-1}$:
$A^{-1}(AX)= A^{-1}(B) \to A^{-1}AX=IX=\boldsymbol{A=A^{-1}B}$
Solo quedaría, en un problema usual, hacer las operaciones que han aparecido al despejar. En este caso, calcular la inversa de $A$ y `premultiplicar' por $B$
\underline{¡Ojo!}: el orden en que se multiplican matrices es MUY importante, por eso insistimos en lo de `premultiplicar' y `postmultiplicar'
Veamos otros ejemplos teóricos de resolución de ecuaciones matriciales:
\noindent * $XM=N \to$
Si $\exists M^{-1}$, postmultiplicando: $XMM^{-1}=XI=\boldsymbol{X=NM^{-1}}$
\noindent * $AXB=C \to $
Si existen $A^{-1}$ y $B^{-1}$, premultiplicando por $A^{-1}$ y postmultiplicando por $B^{-1}$ (lo hacemos más explícitamente en este caso):
$\textcolor{red}{A^{-1}} \cdot \textcolor{blue}{AXB} \cdot \textcolor{red}{B^{-1}}= $
$\textcolor{red}{A^{-1}} \cdot \textcolor{blue}{C} \cdot \textcolor{red}{B^{-1}} $
$\to A^{-1}AXBB^{-1}=A^{-1}CB^{-1} \to $
$IXI=A^{-1}CB^{-1} \Rightarrow X=A^{-1}CB^{-1}$
\noindent * $ABX=C \to $
Si existen $A^{-1}$ y $B^{-1}$, premultiplicando por $A^{-1}$ y luego por $B^{-1}$:
$ \textcolor{red}{A^{-1}} ABX = \textcolor{red}{A^{-1}} C \to A^{-1}ABX=A^{-1}C\to IBX=A^{-1}C \Rightarrow$
$BX=A^{-1}C$. Ahora por $B^{-1}\; $: $\textcolor{blue}{B^{-1}}BX=\textcolor{blue}{B^{-1}}A^{-1}C \to $
$BB^{-1}X=B^{-1}A^{-1}C \to IX=B^{-1}A^{-1}C \Rightarrow X=B^{-1}A^{-1}C $
Obsérvese que también podíamos haber hecho: $(AB)X=C$, si existe $(AB)^{-1} \to (AB)^{-1}(AB)X=(AB)^{-1}C \to IX=(AB)^{-1}C \qquad \Rightarrow \qquad X=(AB)^{-1}C$, que evidentemente es el mismo resultado anterior, puesto que $(AB)^{-1}=B^{-1}A^{-1}$
\noindent * $AX=BX+C \to$
Primero aislemos la matriz incógnita $X$ en un solo miembro de la ecuación:
$AX-BX=C \to (A-B)X=C \to \text{ si } \; \exists (A-B)^{-1} \quad \therefore \; $
$(A-B)^{-1}(A-B)X=(A-B)^{-1}C \to IX=(A-B)^{-1}C \Rightarrow $
$X=(A-B)^{-1}C$
\noindent * $XM=NX+P \to$
Como en el caso anterior: $XM-NX=P$, sacando `factor común por la izquierda':
$X(M-N)=P$, si existe $(M-N)^{-1}$, postmultiplicando en ste caso:
$X(M-N)(M-N)^{-1}=P(M-N)^{-1} \to XI=P(M-N)^{-1} \Rightarrow $
$X=P(M-N)^{-1}$
\noindent * $XM=2X+N$
Análogamente al caso anterior: $XM-2X=N \to X(M-2)= \cdots $ ¡Un momento!: $M-2$ no tiene ningún sentido. ASTUCIA: usemos la matriz $I$:
\small{$XM-2X=N \to XM-X2=N \to XM-X2\textcolor{red}{I}=N \to X(M-2I)=N$}\normalsize{.}
Si existe la inversa de la matriz $M-2I$, que ahora sí tiene sentido, postmultiplicando tendremos:
$X(M-2I)(M-2I)^{-1}=N(M-2I)^{-1} \to XI=N(M-2I)^{-1} \Rightarrow $
$X=N(M-2I)^{-1}$
\noindent * etc. En problemas veremos, y resolveremos, más casos.
\subsection{Forma matricial de un SEL}
Un sistema de ecuaciones lineales `cuadrado', es decir, con tantas ecuaciones como incógnitas, se puede interpretar como una ecuación matricial:
$\begin{cases} a_{11}x_1+a_{12}x_2 + \cdots + a_{1n}x_n &=b_1 \\
a_{12}x_1+a_{22}x_2 + \cdots + a_{2n}x_n &=b_2 \\
\cdots + \cdots + \cdots + \cdots + \cdots &=\cdots \\
a_{n1}x_1+a_{n2}x_2+\cdots +a_{nn}x_n &=b_n \end{cases} \quad \Leftrightarrow \quad \boxed{\; AX=B\; \; }$ ,
donde:
$A=\left( \begin{matrix} a_{11}&a_{12}& \cdots &a_{1n} \\
a_{12} &a_{22} &\cdots &a_{2n} \\
\cdots & \cdots & \cdots & \cdots \\
a_{n1} &a_{n2} &\cdots &a_{nn} \end{matrix} \right); \; X=\left( \begin{matrix} x_1\\x_2\\ \vdots \\x_n \end{matrix} \right); \; B=\left( \begin{matrix} b_1\\b_2\\ \vdots \\b_n \end{matrix} \right)$
$A$ es la matriz de los coeficientes, $X$ la de incógnitas y $B$ la de términos independientes.
Es decir:
\noindent \colorbox{LightYellow}{\scriptsize{$\boxed{\begin{cases} a_{11}x_1+a_{12}x_2 + \cdots + a_{1n}x_n &=b_1 \\
a_{12}x_1+a_{22}x_2 + \cdots + a_{2n}x_n &=b_2 \\
\cdots + \cdots + \cdots + \cdots + \cdots &=\cdots \\
a_{n1}x_1+a_{n2}x_2+\cdots +a_{nn}x_n &=b_n \end{cases} \Leftrightarrow
\left( \begin{matrix} a_{11}&a_{12}& \cdots &a_{1n} \\
a_{12} &a_{22} &\cdots &a_{2n} \\
\cdots & \cdots & \cdots & \cdots \\
a_{n1} &a_{n2} &\cdots &a_{nn} \end{matrix} \right) \cdot \left( \begin{matrix} x_1\\x_2\\ \vdots \\x_n \end{matrix} \right)=\left( \begin{matrix} b_1\\b_2\\ \vdots \\b_n \end{matrix} \right)}$}}
\normalsize{En} el caso de que $\exists A^{-1}$, se puede resolver la ecuación matricialemente.
Consideraciones: para usar este método es necesario que el sistema sea cuadrado y la matriz de los coeficientes sea distinta de cero (para que $\exists A^{-1}$. Además, el cálculo de una inversa suele ser largo. El método de Gauss sirve para cualquier sistema de ecuaciones.
En el apartado de problemas veremos como resolver matricialmente un SEL.
\section{Ejercicios}
\subsection{Ejercicios resueltos}
%Cálculo Sarrus-Laplace
\begin{ejre} Calcula:
\noindent \small{$a)\; \left| \begin{matrix} 2&-1\\8&5 \end{matrix} \right| \; \;
b)\; \left| \begin{matrix} -2&1&3\\5&-1&0\\0&2&-6 \end{matrix} \right| \; \;
c)\; \left| \begin{matrix} 2&1&0&-1\\3&1&2&-1\\2&-1&1&0\\0&1&1&2 \end{matrix} \right| \; \;
d)\; \left| \begin{matrix} 1&-1&0&2&0\\1&0&2&0&0\\0&0&-1&2&3\\-1&2&2&-1&0\\2&5&0&1&-2 \end{matrix} \right| \; \; $}
\end{ejre}
\begin{proofw}\renewcommand{\qedsymbol}{$\diamond$}
\normalsize{-----} a) $\left| \begin{matrix} 2&-1\\8&5 \end{matrix} \right|=10-(-8)=\boldsymbol{ 18}$
\noindent ----- b) $\left| \begin{matrix} -2&1&3\\5&-1&0\\0&2&-6 \end{matrix} \right|= -12+30+0-(0+0-30)=\boldsymbol{48}$
\noindent ----- c) $\left| \begin{matrix} 2&1&0&-1\\3&1&2&-1\\2&-1&1&0\\0&1&1&2 \end{matrix} \right| = \left[ \begin{matrix} F2 \to F2-2F4\\ F3 \to F3-F4 \end{matrix} \right] = \left| \begin{matrix} 2&1&\boxed{0}&-1\\3&-1&\boxed{0}&-5\\2&-2&\boxed{0}&-2\\0&1&1&2 \end{matrix} \right| =\to $
Desarrollamos por Laplace por los adjuntos de la tercera columna:
\noindent $\to = 0\; +\; 0\; +\; 0\; +\; 1\cdot (-1)^{4+3} \left| \begin{matrix} 2&1&-1\\3&-1&-5\\2&-2&-2 \end{matrix} \right| = - [\; 4+6-10-(2+20-6) \; ]= -[0-(16)]=\boldsymbol{ 16} $
\noindent ----- d) $ \left| \begin{matrix} 1&-1&0&2&\boldsymbol{0}\\1&0&2&0&\boldsymbol{0}\\0&0&-1&2&3\\-1&2&2&-1&\boldsymbol{0}\\2&5&0&1&-2 \end{matrix} \right| = \dfrac {\colorbox{Yellow}{3}} {3} \left| \begin{matrix} 1&-1&0&2&\boldsymbol{0}\\1&0&2&0&\boldsymbol{0}\\0&0&-1&2&3\\-1&2&2&-1&\boldsymbol{0}\\\colorbox{Yellow}{2}&\colorbox{Yellow}{5}&\colorbox{Yellow}{0}&\colorbox{Yellow}{1}&\colorbox{Yellow}{-2} \end{matrix} \right|= \to $
Multiplicamos, y dividimos, la última fila por $3$, para tenerla preparada y buscar `ceros en la quinta columna): \textcolor{gris}{(también hubiésemos podido buscar `ceros' en la segunda fila, donde ya hay $3$, cambiando $C2$ por$C2-2C1$)}
\noindent $\dfrac 1 3 \left| \begin{matrix} 1&-1&0&2&\boldsymbol{0}\\1&0&2&0&\boldsymbol{0}\\0&0&-1&2&3\\-1&2&2&-1&\boldsymbol{0}\\\colorbox{Yellow}{6}&\colorbox{Yellow}{15}&\colorbox{Yellow}{0}&\colorbox{Yellow}{3}&\colorbox{Yellow}{-6} \end{matrix} \right|=
[\;F5 \to F5+2F3\;] = \to $
\noindent $\dfrac 1 3 \left| \begin{matrix} 1&-1&0&2&\text{\textst{ 0 }} \\1&0&2&0&\text{\textst{ 0 }} \\\text{\textst{ 0 }} &\text{\textst{ 0 }} &\text{\textst{ -1 }} &\text{\textst{ 2 }} &\text{\textst{ 3 }} \\-1&2&2&-1&\text{\textst{ 0 }} \\6&15&-2&7&\text{\textst{ 0 }} \end{matrix} \right|= $ (Laplace $5^a$ columna) $=\to$
\noindent $\to =0\; +\; 0\; + \dfrac 1 3\; 3 \cdot (-1)^{3+5} \left|
\begin{matrix} 1&-1&0&2\\1&\boldsymbol{ 0}&2&\boldsymbol{ 0}\\-1&2&2&-1 \\6&15&-2&7 \end{matrix} \right| = [\; C3 \to C3-2C1 \; ] = \to $
\noindent $=+\left|
\begin{matrix} 1&-1&-2&2\\1&\boldsymbol{ 0}&\boldsymbol{0} &\boldsymbol{ 0}\\-1&2&4&-1 \\6&15&-14&7 \end{matrix} \right|=$ (Lapalace $2^a$ fila)
$= \left|
\begin{matrix} \text{\textst{ 1 }}&-1&-2&2\\\text{\textst{ 1 }}&\text{\textst{ 0 }}&\text{\textst{ 0 }} &\text{\textst{ 0 }}\\\text{\textst{ 1 }}&2&4&-1 \\\text{\textst{ 6 }}&15&-14&7 \end{matrix} \right| = $
\noindent $1\cdot (-1)^{2+1}\; \left| \begin{matrix} -1&-2&2\\2&4&-1\\15&-14&7 \end{matrix} \right| +0+0+0= -[-28-56+30-(120-14-28)]=-[-54-(78)]-[-132]=\boldsymbol{132}$
\end{proofw}
\begin{ejre}
Dada $A=\left[ \begin{matrix}2&3&0\\0&1&2\\-1&0&2 \end{matrix} \right]\;$, calcula los siguientes adjuntos: $A_{23}; \; A_{32}; \; A_{11}$
\end{ejre}
\begin{proofw}\renewcommand{\qedsymbol}{$\diamond$}
$A_{23}=(-1)^{2+3}\;M_{23}= (-1)\; \left| \begin{matrix} 2&3\\-1&0
\end{matrix} \right|= (-1)\; (0-(-3)) = \boldsymbol{-3}$
\noindent $A_{32}=(-1)^{3+3}\;M_{32}= (-1)\; \left| \begin{matrix} 2&0\\0&2
\end{matrix} \right|= (-1)\; (4-(0)) = \boldsymbol{-4}$
\noindent $A_{11}=(-1)^{1+1}\;M_{1}= +\; \left| \begin{matrix} 1&2\\0&2
\end{matrix} \right|= (2-(0)) = \boldsymbol{2}$
\end{proofw}
\begin{ejre}
Sea $\; A_n=\left( \begin{matrix}
1&1&1&\cdots&1 \\ -1&2&1&\cdots &1 \\ -1&-1&2&\cdots &1 \\ \vdots & \vdots & \vdots & \ddots & \vdots \\-1&-1&-1& \cdots &2
\end{matrix} \right)\; $.
Calcula $det(A_2); \; det(A_3); \; det(A_4)$. ¿Qué valdrá el $\; det(A_n)\; $?
\end{ejre}
\begin{proofw}\renewcommand{\qedsymbol}{$\diamond$}
$A_2= \left| \begin{matrix} 1&1\\-1&2 \end{matrix} \right|=2-(-1)=3=3^{2-1}$
\noindent $A_2= \left| \begin{matrix} 1&1&1\\-1&2&1 \\ -1&-1&2 \end{matrix} \right|=4+1-1 -(-2-1-2) =4-(-5)=9=3^2=3^{3-1}$
\noindent $A_3= \left| \begin{matrix} 1&1&1&1\\-1&2&1&1 \\ -1&-1&2&1 \\ -1&-1&-1&2 \end{matrix} \right|= \textcolor{gris}{\begin{cases} F2\to F1+F1 \\ F3\to F3+F1 \\ F4\to F4+F1 \end{cases}} =
\left| \begin{matrix} 1&1&1&1\\0&3&2&2 \\ 0&0&3&2 \\ 0&0&0&3 \end{matrix} \right| = \textcolor{gris}{diagonal}= 1\cdot 3 \cdot 3 \cdot 3=27=3^3=3^{4-1}$
\noindent Conjeturamos que $det(A_n)=|A_n|=3^{n-1}\; $ Habría que demostrarlo por inducción (ver apéndice \ref{inducción}).
\end{proofw}
\begin{ejre}
Calcula: $\; \left| \begin{matrix} 1&ln 2&(ln 2)^2\\ 1 & ln 4 & (ln 4)^2 \\ 1& ln 8 & (ln 8)^2 \end{matrix} \right| \;$
\end{ejre}
\begin{proofw}\renewcommand{\qedsymbol}{$\diamond$}
\noindent Es sabido que: $ln x - ln y = ln \frac x y \to \begin{cases}
ln 4-ln 2= ln \frac 4 2 = ln 2 \\ ln8-ln2=ln \frac 8 2 = ln 4=ln 2^2=2ln 2
\end{cases}$
\noindent Tambien que $ln x + ln y = ln (x\cdot y)$, así como $ln x^n=n\;lnx$
\noindent Y que: $a^2-b^2=(a+b)(a-b) \to \begin{cases}
(ln4)^2-(ln2)^2=(ln4+ln2)\cdot (ln4-ln2)=\\
=ln8\cdot ln 2= ln2^3\cdot ln2=3(ln2)^2 \\
----------\\
(ln 8)^2-(ln2)^2=(ln8+ln2)\cdot(ln8-ln2)=\\
=ln16\cdot ln4=ln2^4\cdot ln2^2=8(ln2)^2
\end{cases}$
\noindent $\; \left| \begin{matrix} 1&ln 2&(ln 2)^2\\ 1 & ln 4 & (ln 4)^2 \\ 1& ln 8 & (ln 8)^2 \end{matrix} \right| \; = \textcolor{gris}{\left[ \begin{matrix} F2\to F2-F1\\ F3 \to F3-F1 \end{matrix} \right]} = \; \; \left| \begin{matrix} 1&ln 2&(ln 2)^2\\ 1 & ln 2 & 3(ln 2)^2 \\ 1& 2ln 2 & 8(ln 2)^2 \end{matrix} \right| \; = \textcolor{gris}{ \begin{cases} ln2 \text { factor común } C2\\ (ln2)^2 \text { factor común } C3 \end{cases} }\; = (ln2)^3\; \left| \begin{matrix} 1&1&1\\0&1&3\\0&2&8 \end{matrix} \right| \; = \textcolor{gris}{[ F3\to F3-2F2 ]}= (ln2)^3\; \left| \begin{matrix} 1&1&1\\0&1&3\\0&0&2 \end{matrix} \right|\; \textcolor{gris}{\text{ diagonal }}\; = (ln2)^3 1\cdot 1\cdot 2= \boldsymbol{2(ln 2)^3} $
\end{proofw}
%$ \left| \begin{matrix} \end{matrix} \right|$
% Propiedades
\begin{ejre}
Calcula: $\; \left| \begin{matrix} a&a&a\\-a&a&x\\ -a&-a&x \end{matrix} \right| $
\end{ejre}
\begin{proofw}\renewcommand{\qedsymbol}{$\diamond$}
$\left| \begin{matrix} a&a&a\\-a&a&x\\ -a&-a&x \end{matrix} \right|=
\textcolor{gris}{\left[ \begin{matrix} F2\to F2+F1\\ F3\to F3+F1 \end{matrix} \right]}=\left| \begin{matrix} a&a&a\\0&2a&x+a\\ 0&0&x+a \end{matrix} \right|= \; \textcolor{gris}{( diagonal )} \; =$
\noindent $=\boldsymbol{ 2a\cdot(x+a)^2 } $
\end{proofw}
\begin{ejre}
Calcula: $\; \left| \begin{matrix} a&a&a&a\\a&b&b&b\\a&b&c&c\\a&b&c&d \end{matrix} \right|$
\end{ejre}
\begin{proofw}\renewcommand{\qedsymbol}{$\diamond$}
$\left| \begin{matrix} a&a&a&a\\a&b&b&b\\a&b&c&c\\a&b&c&d \end{matrix} \right| \;=\; \textcolor{gris}{\left[ \begin{matrix} F2\to F2-F1 \\F3\to F3-F1 \\F4\to F4-F1 \end{matrix} \right]} \;=\;
\left| \begin{matrix} a&a&a&a\\0&b-a&b-a&b-a\\0&b-a&c-a&c-a\\0&b-a&c-a&d-a \end{matrix} \right| \; = \;
\textcolor{gris}{ \left[ \begin{matrix}
a \text{ factor común F1} \\ (b-a) \text{ factor común F2} \end{matrix} \right] }=\quad a\cdot (b-a)\; \left| \begin{matrix} 1&1&1&1\\0&1&1&1\\0&b-a&c-a&c-a\\0&b-a&c-a&d-a \end{matrix} \right|
=\quad \textcolor{gris}{\left[ \begin{matrix} F3\to F3-(b-a)F2 \\F4\to F4-(b-a)F2 \end{matrix} \right]}=a\cdot (b-a)\; \left| \begin{matrix} 1&1&1&1 \\ 0&1&1&1 \\ 0&0&c-b&c-b \\ 0&0&c-b&d-b \end{matrix} \right| = \small{\textcolor{gris}{(F4 \to F4-F3)}}\normalsize{=}$
\noindent $=\left| \begin{matrix} 1&1&1&1 \\ 0&1&1&1 \\ 0&0&c-b&c-b \\ 0&0&0&d-c \end{matrix} \right| = \textcolor{gris}{\text{ (diagonal) }}=\boldsymbol{ a(b-a)(c-b)(b-c) }$
\end{proofw}
\begin{ejre}
Sabiendo que $\left| \begin{matrix} a&1&d\\b&2&d\\c&3&d \end{matrix} \right|=5\;$ encuentra el valor de los siguientes determinantes:
$a)\; \left| \begin{matrix} a+2d&2&d\\b+2d&4&d\\c+2d&6&d \end{matrix} \right|; \;\;
b)\; \left| \begin{matrix} a&3d&-1-2a\\b&3d&-2-2b\\c&3d&-3-2c \end{matrix} \right|; \;\;
c)\; \left| \begin{matrix} 6&2&3\\a+b+c&b&c\\3d&d&d \end{matrix} \right| =$
\end{ejre}
\begin{proofw}\renewcommand{\qedsymbol}{$\diamond$}
--- a) $\left| \begin{matrix} a+2d&2&d\\b+2d&4&d\\c+2d&6&d \end{matrix} \right|=\left| \begin{matrix} a&2&d\\b&4&d\\c&6&d \end{matrix} \right|\; + \; \cancelto{0}{ \left| \begin{matrix} 2d&2&d\\2d&4&d\\2d&6&d \end{matrix} \right|}= $
\small{$[C1 \text{ proporc. } C3 ]$}\normalsize{$=$}
$=2\; \left| \begin{matrix} a&1&d\\b&2&d\\c&3&d \end{matrix} \right| =$
\small{$[2$ factor común $C2]$}\normalsize{$=$}$2\cdot 5=$ \small{[por hipótesis]} \normalsize{$=\boldsymbol{10} $}
\noindent ---b) $\left| \begin{matrix} a&3d&-1-2a\\b&3d&-2-2b\\c&3d&-3-2c \end{matrix} \right|=- \left| \begin{matrix} a&3d&1\\b&3d&2\\c&3d&3 \end{matrix} \right|
- \cancelto{0}{\left| \begin{matrix} a&3d&2a\\b&3d&2b\\c&3d&2c \end{matrix} \right|} =$ \small{$[C3 \text{ proporc. } C1 ]$}\normalsize{$=$}
$=- 3\; \left| \begin{matrix} a&d&1\\b&d&2\\c&d&3 \end{matrix} \right|=$
\small{$[ 3$ factor común $C2]$}\normalsize{$=$}
$=- 3\;(-1)\; \left| \begin{matrix} a&1&d\\b&2&d\\c&3&d \end{matrix} \right|=$
\noindent \small{Intercambio $C2 \leftrightarrow C3$}\normalsize{$=$}
$(-3)(-1)\; 5 $ \small{[por hipótesis]}\normalsize{$=$}$\boldsymbol{15}$
\noindent --- c) $\left| \begin{matrix} 6&2&3\\a+b+c&b&c\\3d&d&d \end{matrix} \right|= (\;*\;)=
\left| \begin{matrix} 1+2+3&2&3\\a+b+c&b&c\\d+d+d&d&d \end{matrix} \right|=$
\noindent \normalsize{$=$} \small{[rompemos como suma de tres determinantes]}\normalsize{$=$}
\noindent $=
\left| \begin{matrix} 1&2&3\\a&b&c\\d&d&d \end{matrix} \right|+
\cancelto{0}{\left| \begin{matrix} 2&2&3\\b&b&c\\d&d&d \end{matrix} \right|}+
\cancelto{0}{\left| \begin{matrix} 3&2&3\\c&b&c\\d&d&d \end{matrix} \right|}=$ \small{$\left[ \begin{matrix}
\text{det-2: } C1=C2 \\
\text{det-3: } C1=C3 \\
\text{det-1: } |A|=|A^t|
\end{matrix} \right]$}\normalsize{$=$}
\noindent $=\left| \begin{matrix} 1&a&d\\2&b&d\\3&c&d \end{matrix} \right| =$
\small{[Intercambio: $C1 \leftrightarrow C2$]} \normalsize{$=$}
$-\left| \begin{matrix} a&1&d\\b&2&d\\c&3&d \end{matrix} \right| = \boldsymbol{-5}$, \small{por hipótesis}\normalsize{.}
\end{proofw}
%$ \left| \begin{matrix} \end{matrix} \right|$
\begin{ejre}
Sean $A$ y $B$ dos matrices cuadradas de orden $3$ tales que $|A|=4$ y $|B|=2$. Calcula:
$a)\; |AB|; \quad b)\; |(A^TB)^{-1}|; \quad c)\; |A^3B^2|; \quad d)\; |5A|$
\end{ejre}
\begin{proofw}\renewcommand{\qedsymbol}{$\diamond$}
Usando las propiedades de los determinantes:
\noindent --- a) $|AB|=|A|\cdot|B|=4\cdot 2 = \boldsymbol{8} $
\noindent --- b) $|(A^TB)^{-1}|=\dfrac {1}{|A^TB|}= \dfrac {1}{|A^T| \cdot |B|}=\dfrac {1}{|A| \cdot |B|}= \dfrac {1}{4 \cdot 2}= \boldsymbol{\dfrac 1 8}$
\noindent --- c) $|A^3B^2|=|A|^3 \cdot |B|^2=4^3 \cdot 2^2 =\boldsymbol{256}$
\noindent --- d) Como $A$ es de orden $3$: $\; |5A|=5^3 \; |A| = 5^3 \cdot 4=\boldsymbol{500}$
\end{proofw}
\begin{ejre}
Considera $\;\left| \begin{matrix} 1&1&1\\x&y&z\\0&2&4 \end{matrix} \right|=4\;$, sin usar Sarrus, calcula los siguientes determinantes:
$a)\; \; \left| \begin{matrix} 3x&3y&3z\\1&1&1\\0&1&2 \end{matrix} \right| \qquad b)\; \;
\left| \begin{matrix} x&y&z\\3x&3y+2&3z+4\\x+2&y+2&z+2 \end{matrix} \right|$
\end{ejre}
\begin{proofw}\renewcommand{\qedsymbol}{$\diamond$}
$a)\; \; \left| \begin{matrix} 3x&3y&3z\\1&1&1\\0&1&2 \end{matrix} \right|=\; $ \textcolor{gris}{(3 factor común F1)} $\; = 3\; \left| \begin{matrix} x&y&z\\1&1&1\\0&1&2 \end{matrix} \right|=\; $ \textcolor{gris}{($F1\leftrightarrow F2$)} $\;= -3\; \dfrac 2 2 \; \left| \begin{matrix} 1&1&1\\x&y&z\\0&1&2 \end{matrix} \right|=\; $ \textcolor{gris}{$2\cdot F3$} $\; = - \dfrac 3 2 \left| \begin{matrix} 1&1&1\\x&y&z\\0&2&4 \end{matrix} \right| =\;$ \textcolor{gris}{(por hipótesis)} $\; = - \dfrac 3 2 4 = \boldsymbol{-6}$
\noindent $b)\; \; \left| \begin{matrix} x&y&z\\3x&3y+2&3z+4\\x+2&y+2&z+2 \end{matrix} \right| =\; $ \textcolor{gris}{(suma dos determinantes por F3)} $\; = \cancelto{0}{\left| \begin{matrix} x&y&z\\3x&3y+2&3z+4\\x&y&z \end{matrix} \right|} \; + \; \left| \begin{matrix} x&y&z\\3x\textcolor{red}{+0}&3y+2&3z+4\\2&2&2 \end{matrix} \right| =\; $ \textcolor{gris}{primer det. es cero por F1=F3; segundo determinante como suma de dos por la F2} $\; = \left| \begin{matrix} x&y&z\\3x&3y&3z\\2&2&2 \end{matrix} \right| \; + \; \left| \begin{matrix} x&y&z\\0&2&4\\2&2&2 \end{matrix} \right| =\; $ \textcolor{gris}{(3 factor común primer det. F2; 2 factor común segundo det. F3)} $\; = 3\; \cancelto{0}{ \left| \begin{matrix} x&y&z\\x&y&z\\2&2&2 \end{matrix} \right|} \; + \; 2\; \left| \begin{matrix} x&y&z\\0&2&4\\1&1&1 \end{matrix} \right| =\; $ \textcolor{gris}{(primer determinante es cero por $F1=F2$; segundo determinantes: $F1\leftrightarrow F2$)} $\; = -2\; \left| \begin{matrix} 0&2&4\\x&y&z\\1&1&1 \end{matrix} \right| =\; $ \textcolor{gris}{($F1 \leftrightarrow F3$)} $\; = +2\; \left| \begin{matrix} 1&1&1\\x&y&z\\0&2&4 \end{matrix} \right| =\; $ \textcolor{gris}{(por hipótesis)} $\; = 2\cdot 4 = \boldsymbol{8}$
\end{proofw}
\begin{ejre}
Para $\; M=\left( \begin{matrix} 2&1&-1\\1&0&1\\3&1&2 \end{matrix} \right)\; $, calcula