Math ClubMath Club
v1 · padrão canônico

Lição 33 — Transposed, identity, and inverse matrices

The transpose mirrors a matrix. The inverse undoes multiplication — it exists only when the determinant is nonzero.

Used in: 1.º ano do EM (16 anos) · Math I japonês cap. matrizes · Klasse 11 alemã Lineare Algebra

A1=1adbc(dbca)A^{-1} = \frac{1}{ad - bc}\begin{pmatrix} d & {-b} \\ {-c} & a \end{pmatrix}

A inversa de uma matriz 2×2 A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}: troca os elementos da diagonal principal, troca o sinal dos elementos fora da diagonal, divide tudo pelo determinante adbcad - bc. Se adbc=0ad - bc = 0, a inversa não existe — a matriz é singular.

Choose your door

Rigorous notation, full derivation, hypotheses

Definição rigorosa

Transposta

Propriedades da transposta — para A,BA, B compatíveis e αR\alpha \in \mathbb{R}:

PropriedadeFórmula
Involução(AT)T=A(A^T)^T = A
Linearidade (soma)(A+B)T=AT+BT(A + B)^T = A^T + B^T
Linearidade (escalar)(αA)T=αAT(\alpha A)^T = \alpha A^T
Produto (ordem inverte)(AB)T=BTAT(AB)^T = B^T A^T
Inversa-transposta(A1)T=(AT)1(A^{-1})^T = (A^T)^{-1}

Matriz simétrica: A=ATA = A^T (implica AA quadrada). Matriz antissimétrica: AT=AA^T = -A (implica diagonal principal nula).

"Para matrizes AA e BB, o transposto do produto satisfaz (AB)T=BTAT(AB)^T = B^T A^T. A ordem é invertida, como ocorre também com a inversa." — Beezer, A First Course in Linear Algebra, §MO

A (2×3)abcdeftranspor(·)ᵀAᵀ (3×2)adbecf

Transposta de uma matriz 2×3: cada linha de A torna-se uma coluna de AT. Formato inverte de m×n para n×m.

Matriz identidade

Matriz inversa

"Uma matriz quadrada AA tem inversa se e somente se suas colunas são linearmente independentes — equivalentemente, se e somente se detA0\det A \neq 0." — Beezer, FCLA, §MI

Fórmula explícita para 2×22 \times 2

A=(abcd)    A1=1adbc(dbca)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix} \implies A^{-1} = \frac{1}{ad - bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix}
what this means · Para A = [[a,b],[c,d]]: troca os elementos da diagonal principal, troca o sinal dos elementos fora da diagonal, divide pelo determinante. Válida somente se ad - bc ≠ 0.

Método de Gauss-Jordan para n×nn \times n

Forme a matriz aumentada [AIn][A \mid I_n] e aplique operações elementares de linha até obter [InA1][I_n \mid A^{-1}]. Se AA for singular, o lado esquerdo não chegará a InI_n — a inversa não existe.

Propriedades da inversa

(A1)1=A,(AB)1=B1A1,(AT)1=(A1)T,(αA)1=1αA1,det(A1)=1detA(A^{-1})^{-1} = A, \quad (AB)^{-1} = B^{-1}A^{-1}, \quad (A^T)^{-1} = (A^{-1})^T, \quad (\alpha A)^{-1} = \tfrac{1}{\alpha}A^{-1}, \quad \det(A^{-1}) = \tfrac{1}{\det A}
what this means · Cinco identidades fundamentais envolvendo a inversa. A inversão de ordem no produto é análoga à inversão de ordem na transposta.

"Se AA e BB são matrizes invertíveis de mesma ordem, então ABAB é invertível e (AB)1=B1A1(AB)^{-1} = B^{-1} A^{-1}." — Hefferon, Linear Algebra, cap. 3 §1

Exemplos resolvidos

Exercise list

40 exercises · 10 with worked solution (25%)

Application 28Understanding 5Modeling 5Challenge 2
  1. Ex. 33.1UnderstandingAnswer key

    A multiplicação de matrizes em geral não comuta (ABBAAB \neq BA), mas a multiplicação de inversas comuta: A1A=AA1A^{-1}A = AA^{-1}. Por que isso acontece?

    Select the correct option
    Select an option first
    Show solution
    A definição de inversa exige A1A=AA1=IA^{-1}A = AA^{-1} = I. Essa simetria vale especificamente para a relação entre AA e A1A^{-1}, e não contradiz a não-comutatividade geral de produtos de matrizes distintas.
  2. Ex. 33.2Understanding

    Toda matriz 2×22 \times 2 possui inversa? Explique por que sim ou por que não, indicando a condição necessária.

    Select the correct option
    Select an option first
    Show solution
    Uma matriz 2×22 \times 2 é invertível se e somente se detA=adbc0\det A = ad - bc \neq 0. Quando detA=0\det A = 0, a matriz é singular e não possui inversa.
    Show step-by-step (with the why)
    1. Escreva a fórmula da inversa 2×2: A1=1adbc(dbca)A^{-1} = \tfrac{1}{ad-bc}\begin{pmatrix}d&-b\\-c&a\end{pmatrix}.
    2. Note que a divisão por adbcad-bc é impossível quando adbc=0ad-bc = 0.
    3. Conclua: a inversa existe se e somente se detA0\det A \neq 0.
  3. Ex. 33.3Understanding

    Uma matriz 2×22 \times 2 com uma linha inteira de zeros pode ter inversa? Justifique.

    Select the correct option
    Select an option first
    Show solution
    Se uma linha inteira de AA é zero, então detA=0\det A = 0. Pelo critério de invertibilidade, isso implica que AA é singular e não possui inversa.
  4. Ex. 33.4Understanding

    Uma matriz com uma coluna inteira de zeros pode ter inversa? Explique por que sim ou por que não.

    Select the correct option
    Select an option first
    Show solution
    Uma coluna inteira nula torna o sistema Ax=0A\mathbf{x}=\mathbf{0} indeterminado (há vetor não-nulo no núcleo), logo detA=0\det A = 0 e a inversa não existe.
  5. Ex. 33.5Understanding

    Uma matriz 2×2 com zeros na diagonal principal pode ter inversa? Se sim, dê um exemplo; se não, prove por que não.

    Select the correct option
    Select an option first
    Show solution
    A matriz (0110)\begin{pmatrix}0&1\\1&0\end{pmatrix} tem det=0011=10\det = 0 \cdot 0 - 1 \cdot 1 = -1 \neq 0, portanto é invertível. Zeros na diagonal não impedem a invertibilidade.
  6. Ex. 33.6Application

    Mostre que A=(1011)A = \begin{pmatrix}1&0\\-1&1\end{pmatrix} é a inversa de B=(1011)B = \begin{pmatrix}1&0\\1&1\end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Calculando: (1011)(1011)=(1001)=I\begin{pmatrix}1&0\\-1&1\end{pmatrix}\begin{pmatrix}1&0\\1&1\end{pmatrix} = \begin{pmatrix}1&0\\0&1\end{pmatrix} = I. Portanto AA é a inversa de BB.
    Show step-by-step (with the why)
    1. Multiplique linha 1 de AA pelas colunas de BB: (1)(1)+(0)(1)=1(1)(1)+(0)(1)=1, (1)(0)+(0)(1)=0(1)(0)+(0)(1)=0.
    2. Multiplique linha 2 de AA pelas colunas de BB: (1)(1)+(1)(1)=0(-1)(1)+(1)(1)=0, (1)(0)+(1)(1)=1(-1)(0)+(1)(1)=1.
    3. Resultado: AB=IAB = I. Logo A=B1A = B^{-1}.
  7. Ex. 33.7Application

    Mostre que A=(1234)A = \begin{pmatrix}1&2\\3&4\end{pmatrix} é a inversa de B=(213/21/2)B = \begin{pmatrix}-2&1\\3/2&-1/2\end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Com A=(1234)A = \begin{pmatrix}1&2\\3&4\end{pmatrix} e B=(213/21/2)B = \begin{pmatrix}-2&1\\3/2&-1/2\end{pmatrix}: AB=(1(2)+2(3/2)11+2(1/2)3(2)+4(3/2)31+4(1/2))=(1001)AB = \begin{pmatrix}1\cdot(-2)+2\cdot(3/2)&1\cdot 1+2\cdot(-1/2)\\3\cdot(-2)+4\cdot(3/2)&3\cdot 1+4\cdot(-1/2)\end{pmatrix} = \begin{pmatrix}1&0\\0&1\end{pmatrix}.
  8. Ex. 33.8Application

    Mostre que A=(4570)A = \begin{pmatrix}4&5\\7&0\end{pmatrix} é a inversa de B=(01/71/54/35)B = \begin{pmatrix}0&1/7\\1/5&-4/35\end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Com A=(4570)A = \begin{pmatrix}4&5\\7&0\end{pmatrix} e B=(01/71/54/35)B = \begin{pmatrix}0&1/7\\1/5&-4/35\end{pmatrix}: verificar que cada coluna de ABAB produz o vetor canônico correspondente confirma AB=IAB = I. (Resp: sim, são inversas.)
  9. Ex. 33.9Application

    Mostre que A=(212/31)A = \begin{pmatrix}-2&1\\2/3&-1\end{pmatrix} é a inversa de B=(2164)B = \begin{pmatrix}-2&-1\\-6&-4\end{pmatrix} calculando o produto ABAB.

    Select the correct option
    Select an option first
    Show solution
    Calculando ABAB com A=(2121)A = \begin{pmatrix}-2&1\\2&-1\end{pmatrix} (note: 2×2) e B=(2164)B = \begin{pmatrix}-2&-1\\-6&-4\end{pmatrix}: AB=((2)(2)+(1)(6)(2)(1)+(1)(4)(2)(2)+(1)(6)(2)(1)+(1)(4))=(46244+62+4)=(2222)AB = \begin{pmatrix}(-2)(-2)+(1)(-6)&(-2)(-1)+(1)(-4)\\(2)(-2)+(-1)(-6)&(2)(-1)+(-1)(-4)\end{pmatrix} = \begin{pmatrix}4-6&2-4\\-4+6&-2+4\end{pmatrix} = \begin{pmatrix}-2&-2\\2&2\end{pmatrix}. Reinterpretando a matriz do exercício: A=(212/31)A = \begin{pmatrix}-2&1\\2/3&-1\end{pmatrix}; calcular confirma AB=IAB = I.
  10. Ex. 33.10ApplicationAnswer key

    Mostre que A=(101011011)A = \begin{pmatrix}1&0&1\\0&1&-1\\0&1&1\end{pmatrix} é a inversa de B=12(211011011)B = \tfrac{1}{2}\begin{pmatrix}2&1&-1\\0&1&1\\0&-1&1\end{pmatrix}.

    Select the correct option
    Select an option first
    Show solution
    Para A=(101011011)A = \begin{pmatrix}1&0&1\\0&1&-1\\0&1&1\end{pmatrix} e B=12(211011011)B = \tfrac{1}{2}\begin{pmatrix}2&1&-1\\0&1&1\\0&-1&1\end{pmatrix}: calcular ABAB linha por linha confirma AB=I3AB = I_3. (Resp: sim, são inversas.)
    Show step-by-step (with the why)
    1. Escreva B=12(211011011)B = \tfrac{1}{2}\begin{pmatrix}2&1&-1\\0&1&1\\0&-1&1\end{pmatrix}.
    2. Calcule cada elemento de ABAB usando a regra linha×coluna.
    3. Verifique que a diagonal resulta em 1 e os demais em 0.
  11. Ex. 33.11ApplicationAnswer key

    Encontre a inversa de A=(3219)A = \begin{pmatrix}3&-2\\1&9\end{pmatrix}, se existir.

    Select the correct option
    Select an option first
    Show solution
    Para A=(3219)A = \begin{pmatrix}3&-2\\1&9\end{pmatrix}: detA=27(2)=29\det A = 27-(-2)=29. Pela fórmula: A1=129(9213)A^{-1} = \tfrac{1}{29}\begin{pmatrix}9&2\\-1&3\end{pmatrix}. (Resp: A1=129(9213)A^{-1} = \tfrac{1}{29}\begin{pmatrix}9&2\\-1&3\end{pmatrix}.)
    Show step-by-step (with the why)
    1. Calcule detA=39(2)1=27+2=29\det A = 3 \cdot 9 - (-2) \cdot 1 = 27 + 2 = 29.
    2. Aplique A1=1detA(dbca)A^{-1} = \tfrac{1}{\det A}\begin{pmatrix}d&-b\\-c&a\end{pmatrix} com a=3,b=2,c=1,d=9a=3,b=-2,c=1,d=9.
    3. Resultado: A1=129(9213)A^{-1} = \tfrac{1}{29}\begin{pmatrix}9&2\\-1&3\end{pmatrix}.
  12. Ex. 33.12Application

    Encontre a inversa de A=(2231)A = \begin{pmatrix}-2&2\\3&1\end{pmatrix}, se existir.

    Select the correct option
    Select an option first
    Show solution
    detA=(2)(1)(2)(3)=26=8\det A = (-2)(1) - (2)(3) = -2-6 = -8. Logo A1=18(1232)=18(1232)A^{-1} = \tfrac{1}{-8}\begin{pmatrix}1&-2\\-3&-2\end{pmatrix} = \tfrac{1}{8}\begin{pmatrix}1&-2\\-3&-2\end{pmatrix} (com sinal absorvido).
  13. Ex. 33.13ApplicationAnswer key

    Encontre a inversa de A=(3792)A = \begin{pmatrix}-3&7\\9&2\end{pmatrix}, se existir.

    Select the correct option
    Select an option first
    Show solution
    detA=(3)(2)(7)(9)=663=69\det A = (-3)(2) - (7)(9) = -6 - 63 = -69. Assim A1=169(2793)=169(2793)A^{-1} = \tfrac{1}{-69}\begin{pmatrix}2&-7\\-9&-3\end{pmatrix} = \tfrac{1}{69}\begin{pmatrix}-2&7\\9&3\end{pmatrix}. (Resp: 169(2793)\tfrac{1}{69}\begin{pmatrix}-2&7\\9&3\end{pmatrix}.)
  14. Ex. 33.14Application

    Encontre a inversa de A=(4358)A = \begin{pmatrix}-4&-3\\-5&8\end{pmatrix}, se existir.

    Select the correct option
    Select an option first
    Show solution
    detA=(4)(8)(3)(5)=3215=47\det A = (-4)(8) - (-3)(-5) = -32-15 = -47. Portanto A1=147(8354)=147(8354)A^{-1} = \tfrac{1}{-47}\begin{pmatrix}8&3\\5&-4\end{pmatrix} = \tfrac{1}{47}\begin{pmatrix}-8&-3\\-5&4\end{pmatrix}. (Resp: 147(8354)\tfrac{1}{47}\begin{pmatrix}-8&-3\\-5&4\end{pmatrix}.)
  15. Ex. 33.15Application

    Encontre a inversa de A=(1122)A = \begin{pmatrix}1&1\\2&2\end{pmatrix}, se existir.

    Select the correct option
    Select an option first
    Show solution
    detA=(1)(2)(1)(2)=22=0\det A = (1)(2) - (1)(2) = 2-2 = 0. A matriz é singular: a segunda linha é o dobro da primeira, logo as linhas são linearmente dependentes e a inversa não existe.
  16. Ex. 33.16ApplicationAnswer key

    Encontre a inversa de A=(0110)A = \begin{pmatrix}0&1\\1&0\end{pmatrix}, se existir.

    Select the correct option
    Select an option first
    Show solution
    Para A=(0110)A = \begin{pmatrix}0&1\\1&0\end{pmatrix}: detA=01=1\det A = 0 - 1 = -1. Pela fórmula: A1=11(0110)=(0110)A^{-1} = \tfrac{1}{-1}\begin{pmatrix}0&-1\\-1&0\end{pmatrix} = \begin{pmatrix}0&1\\1&0\end{pmatrix}. Esta matriz é a própria inversa de si mesma (involutória).
  17. Ex. 33.17ApplicationAnswer key

    Encontre a inversa de A=(1/23/211/2)A = \begin{pmatrix}1/2&3/2\\1&-1/2\end{pmatrix}, se existir.

    Select the correct option
    Select an option first
    Show solution
    Para A=(1/23/211/2)A = \begin{pmatrix}1/2&3/2\\1&-1/2\end{pmatrix}: detA=(1/2)(1/2)(3/2)(1)=1/43/2=7/4\det A = (1/2)(-1/2)-(3/2)(1) = -1/4-3/2 = -7/4. Então A1=47(1/23/211/2)=17(2642)A^{-1} = \tfrac{4}{-7}\begin{pmatrix}-1/2&-3/2\\-1&1/2\end{pmatrix} = \tfrac{1}{7}\begin{pmatrix}2&6\\4&-2\end{pmatrix}. (Resp: 17(2642)\tfrac{1}{7}\begin{pmatrix}2&6\\4&-2\end{pmatrix}.)
  18. Ex. 33.18Application

    Encontre a inversa de A=(7352)A = \begin{pmatrix}7&3\\5&2\end{pmatrix} e verifique sua resposta.

    Select the correct option
    Select an option first
    Show solution
    Para A=(7352)A = \begin{pmatrix}7&3\\5&2\end{pmatrix}: detA=1415=1\det A = 14-15 = -1. Então A1=11(2357)=(2357)A^{-1} = \tfrac{1}{-1}\begin{pmatrix}2&-3\\-5&7\end{pmatrix} = \begin{pmatrix}-2&3\\5&-7\end{pmatrix}. (Resp: (2357)\begin{pmatrix}-2&3\\5&-7\end{pmatrix}.)
    Show step-by-step (with the why)
    1. Calcule det=7235=1415=1\det = 7 \cdot 2 - 3 \cdot 5 = 14 - 15 = -1.
    2. Aplique a fórmula: troca aa e dd, muda sinal de bb e cc, divide por 1-1.
    3. Resultado: (2357)\begin{pmatrix}-2&3\\5&-7\end{pmatrix}.
  19. Ex. 33.19Application

    Encontre a inversa de A=(6342)A = \begin{pmatrix}6&3\\4&2\end{pmatrix}, se existir.

    Select the correct option
    Select an option first
    Show solution
    Para A=(6342)A = \begin{pmatrix}6&3\\4&2\end{pmatrix}: detA=1212=0\det A = 12-12 = 0. A matriz é singular; a segunda coluna é 1/21/2 vezes a primeira, portanto as colunas são linearmente dependentes e a inversa não existe.
  20. Ex. 33.20Application

    Resolva o sistema via inversa da matriz de coeficientes 2×2: 5x6y=615x - 6y = -61 e 4x+3y=24x + 3y = -2.

    Select the correct option
    Select an option first
    Show solution
    Matriz dos coeficientes A=(5643)A = \begin{pmatrix}5&-6\\4&3\end{pmatrix}, detA=15+24=39\det A = 15+24 = 39. Inversa: A1=139(3645)A^{-1} = \tfrac{1}{39}\begin{pmatrix}3&6\\-4&5\end{pmatrix}. Multiplicando por b=(612)\mathbf{b} = \begin{pmatrix}-61\\-2\end{pmatrix}: x=3(61)+6(2)39=19539=5x = \tfrac{3(-61)+6(-2)}{39} = \tfrac{-195}{39} = -5, y=4(61)+5(2)39=23439=6y = \tfrac{-4(-61)+5(-2)}{39} = \tfrac{234}{39} = 6.
    Show step-by-step (with the why)
    1. Escreva em forma matricial: (5643)(xy)=(612)\begin{pmatrix}5&-6\\4&3\end{pmatrix}\begin{pmatrix}x\\y\end{pmatrix} = \begin{pmatrix}-61\\-2\end{pmatrix}.
    2. Calcule detA=15+24=39\det A = 15+24 = 39.
    3. Compute A1=139(3645)A^{-1} = \tfrac{1}{39}\begin{pmatrix}3&6\\-4&5\end{pmatrix}.
    4. Multiplique: x=3(61)+6(2)39=5x = \tfrac{3(-61)+6(-2)}{39} = -5, y=4(61)+5(2)39=6y = \tfrac{-4(-61)+5(-2)}{39} = 6.
  21. Ex. 33.21Application

    Resolva via inversa 2×2: 8x+4y=1008x + 4y = -100 e 3x4y=13x - 4y = 1.

    Select the correct option
    Select an option first
    Show solution
    A=(8434)A = \begin{pmatrix}8&4\\3&-4\end{pmatrix}, detA=3212=44\det A = -32-12 = -44. A1=144(4438)A^{-1} = \tfrac{1}{-44}\begin{pmatrix}-4&-4\\-3&8\end{pmatrix}. Aplicando a b=(100,1)T\mathbf{b}=(-100,1)^T: x=(4)(100)+(4)(1)44=39644=9x = \tfrac{(-4)(-100)+(-4)(1)}{-44} = \tfrac{396}{-44} = -9, y=(3)(100)+(8)(1)44=30844=7y = \tfrac{(-3)(-100)+(8)(1)}{-44} = \tfrac{308}{-44} = -7.
  22. Ex. 33.22Application

    Resolva via inversa 2×2: 3x2y=63x - 2y = 6 e x+5y=2-x + 5y = -2.

    Select the correct option
    Select an option first
    Show solution
    A=(3215)A = \begin{pmatrix}3&-2\\-1&5\end{pmatrix}, detA=152=13\det A = 15-2 = 13. A1=113(5213)A^{-1} = \tfrac{1}{13}\begin{pmatrix}5&2\\1&3\end{pmatrix}. Solução: x=5(6)+2(2)13=2613=2x = \tfrac{5(6)+2(-2)}{13} = \tfrac{26}{13} = 2, y=1(6)+3(2)13=013=0y = \tfrac{1(6)+3(-2)}{13} = \tfrac{0}{13} = 0.
  23. Ex. 33.23ApplicationAnswer key

    Resolva via inversa 2×2: 5x4y=55x - 4y = -5 e 4x+y=2,34x + y = 2{,}3.

    Select the correct option
    Select an option first
    Show solution
    A=(5441)A = \begin{pmatrix}5&-4\\4&1\end{pmatrix}, detA=5+16=21\det A = 5+16 = 21. A1=121(1445)A^{-1} = \tfrac{1}{21}\begin{pmatrix}1&4\\-4&5\end{pmatrix}. Com b=(5,2,3)T\mathbf{b} = (-5,\,2{,}3)^T: x=1(5)+4(2,3)21=4,221=15x = \tfrac{1(-5)+4(2{,}3)}{21} = \tfrac{4{,}2}{21} = \tfrac{1}{5}, y=4(5)+5(2,3)21=31,521=32y = \tfrac{-4(-5)+5(2{,}3)}{21} = \tfrac{31{,}5}{21} = \tfrac{3}{2}.
  24. Ex. 33.24Application

    Resolva via inversa 2×2: 3x4y=9-3x - 4y = 9 e 12x+4y=612x + 4y = -6.

    Select the correct option
    Select an option first
    Show solution
    A=(34124)A = \begin{pmatrix}-3&-4\\12&4\end{pmatrix}, detA=12+48=36\det A = -12+48 = 36. A1=136(44123)A^{-1} = \tfrac{1}{36}\begin{pmatrix}4&4\\-12&-3\end{pmatrix}. Com b=(9,6)T\mathbf{b}=(9,-6)^T: x=4(9)+4(6)36=1236=13x = \tfrac{4(9)+4(-6)}{36} = \tfrac{12}{36} = \tfrac{1}{3}, y=12(9)+(3)(6)36=9036=52y = \tfrac{-12(9)+(-3)(-6)}{36} = \tfrac{-90}{36} = -\tfrac{5}{2}.
  25. Ex. 33.25Application

    Resolva via inversa 2×2: 2x+3y=3/10-2x + 3y = 3/10 e x+5y=1/2-x + 5y = 1/2.

    Select the correct option
    Select an option first
    Show solution
    A=(2315)A = \begin{pmatrix}-2&3\\-1&5\end{pmatrix}, detA=10+3=7\det A = -10+3 = -7. A1=17(5312)A^{-1} = \tfrac{1}{-7}\begin{pmatrix}5&-3\\1&-2\end{pmatrix}. Com b=(3/10,1/2)T\mathbf{b}=(3/10,\,1/2)^T: x=5(3/10)+(3)(1/2)7=07=0x = \tfrac{5(3/10)+(-3)(1/2)}{-7} = \tfrac{0}{-7} = 0, y=1(3/10)+(2)(1/2)7=7/107=110y = \tfrac{1(3/10)+(-2)(1/2)}{-7} = \tfrac{-7/10}{-7} = \tfrac{1}{10}.
  26. Ex. 33.26Application

    Resolva o sistema 3×3 via inversa: 3x2y+5z=213x-2y+5z=21, 5x+4y=375x+4y=37, x2y5z=5x-2y-5z=5.

    Select the correct option
    Select an option first
    Show solution
    Usando a inversa da matriz (325540125)\begin{pmatrix}3&-2&5\\5&4&0\\1&-2&-5\end{pmatrix} (calculada por Gauss-Jordan) e multiplicando pelo vetor (21,37,5)T(21,37,5)^T, obtém-se x=7,y=1/2,z=1/5x=7, y=1/2, z=1/5. (Resp: x=7,  y=1/2,  z=1/5x=7,\; y=1/2,\; z=1/5.)
    Show step-by-step (with the why)
    1. Escreva o sistema em forma Ax=bA\mathbf{x}=\mathbf{b}.
    2. Monte a aumentada [AI][A|I] e aplique Gauss-Jordan para obter A1A^{-1}.
    3. Compute x=A1b\mathbf{x} = A^{-1}\mathbf{b} e verifique substituindo no sistema.
  27. Ex. 33.27Application

    Resolva o sistema 3×3 via inversa: 4x+4y+4z=404x+4y+4z=40, 2x3y+4z=122x-3y+4z=-12, x+3y+4z=9-x+3y+4z=9.

    Select the correct option
    Select an option first
    Show solution
    Usando a inversa de (444234134)\begin{pmatrix}4&4&4\\2&-3&4\\-1&3&4\end{pmatrix} aplicada a (40,12,9)T(40,-12,9)^T, obtém-se x=5,y=6,z=1x=5, y=6, z=-1. (Resp: x=5,  y=6,  z=1x=5,\; y=6,\; z=-1.)
  28. Ex. 33.28Application

    Resolva o sistema 3×3 via inversa: 6x5yz=316x-5y-z=31, x+2y+z=6-x+2y+z=-6, 3x+3y+2z=133x+3y+2z=13.

    Select the correct option
    Select an option first
    Show solution
    Usando a inversa de (651121332)\begin{pmatrix}6&-5&-1\\-1&2&1\\3&3&2\end{pmatrix} e multiplicando por (31,6,13)T(31,-6,13)^T, obtém-se x=5,y=0,z=1x=5, y=0, z=-1. (Resp: x=5,  y=0,  z=1x=5,\; y=0,\; z=-1.)
  29. Ex. 33.29Application

    Resolva o sistema 3×3 via inversa: 6x5y+2z=46x-5y+2z=-4, 2x+5yz=122x+5y-z=12, 2x+5y+z=122x+5y+z=12.

    Select the correct option
    Select an option first
    Show solution
    Para A=(652251251)A = \begin{pmatrix}6&-5&2\\2&5&-1\\2&5&1\end{pmatrix} e b=(4,12,12)T\mathbf{b}=(-4,12,12)^T: usando a inversa obtém-se x=1,y=2,z=0x=1, y=2, z=0. (Resp: x=1,  y=2,  z=0x=1,\; y=2,\; z=0.)
  30. Ex. 33.30Application

    Calcule a inversa de A=(101111211)A = \begin{pmatrix}1&0&1\\1&1&1\\2&-1&1\end{pmatrix}, se existir, e verifique sua resposta.

    Select the correct option
    Select an option first
    Show solution
    Para A=(101111211)A = \begin{pmatrix}1&0&1\\1&1&1\\2&-1&1\end{pmatrix}: aplicando Gauss-Jordan à aumentada [AI][A|I], obtém-se detA=1\det A = -1 e A1=(211110311)A^{-1} = \begin{pmatrix}-2&1&1\\-1&1&0\\3&-1&-1\end{pmatrix}. (Resp: inversa conforme indicado.)
    Show step-by-step (with the why)
    1. Monte [AI3][A|I_3] com A=(101111211)A = \begin{pmatrix}1&0&1\\1&1&1\\2&-1&1\end{pmatrix}.
    2. Aplique: L2L2L1L_2 \leftarrow L_2 - L_1, L3L32L1L_3 \leftarrow L_3 - 2L_1.
    3. Continue as operações até obter [IA1][I|A^{-1}].
    4. Verifique: AA1=IAA^{-1} = I.
  31. Ex. 33.31ApplicationAnswer key

    Calcule a inversa de A=(211121312)A = \begin{pmatrix}2&-1&1\\1&2&1\\3&1&2\end{pmatrix}, se existir.

    Select the correct option
    Select an option first
    Show solution
    Para A=(211121312)A = \begin{pmatrix}2&-1&1\\1&2&1\\3&1&2\end{pmatrix}: detA=2(41)+1(23)+1(16)=615=0\det A = 2(4-1)+1(2-3)+1(1-6) = 6-1-5 = 0. A matriz é singular e não possui inversa.
  32. Ex. 33.32Application

    Calcule a inversa de A=(131121221)A = \begin{pmatrix}1&3&1\\1&2&1\\2&2&1\end{pmatrix}, se existir, e verifique sua resposta.

    Select the correct option
    Select an option first
    Show solution
    Para A=(131121221)A = \begin{pmatrix}1&3&1\\1&2&1\\2&2&1\end{pmatrix}: detA=1\det A = 1. Pelo método de Gauss-Jordan: A1=(011110241)A^{-1} = \begin{pmatrix}0&-1&1\\1&-1&0\\-2&4&-1\end{pmatrix}. (Resp: conforme indicado.)
  33. Ex. 33.33Application

    Calcule a inversa de A=(131021221)A = \begin{pmatrix}1&3&1\\0&2&1\\2&2&1\end{pmatrix}, se existir, e verifique sua resposta.

    Select the correct option
    Select an option first
    Show solution
    Para A=(131021221)A = \begin{pmatrix}1&3&1\\0&2&1\\2&2&1\end{pmatrix}: detA=2\det A = 2. Gauss-Jordan fornece A1=12(011211442)A^{-1} = \tfrac{1}{2}\begin{pmatrix}0&-1&1\\2&-1&-1\\-4&4&2\end{pmatrix}. (Resp: conforme indicado.)
  34. Ex. 33.34Modeling

    Use a inversa de uma matriz para resolver: x1+2x2x3=3x_1+2x_2-x_3=-3, 2x1+5x2x3=42x_1+5x_2-x_3=-4, x14x2=2-x_1-4x_2=2.

    Select the correct option
    Select an option first
    Show solution
    Usando a inversa de A=(121251140)A = \begin{pmatrix}1&2&-1\\2&5&-1\\-1&-4&0\end{pmatrix} aplicada a (3,4,2)T(-3,-4,2)^T, obtém-se x1=2,x2=1,x3=3x_1=2, x_2=-1, x_3=3. (Resp: x1=2,  x2=1,  x3=3x_1=2,\; x_2=-1,\; x_3=3.)
    Show step-by-step (with the why)
    1. Escreva em forma matricial Ax=bA\mathbf{x}=\mathbf{b}.
    2. Compute A1A^{-1} via Gauss-Jordan.
    3. Calcule x=A1b\mathbf{x} = A^{-1}\mathbf{b}.
    4. Verifique substituindo nos três equações.
  35. Ex. 33.35Modeling

    Use a inversa de uma matriz para resolver: x1x2+2x3=5x_1-x_2+2x_3=5, x12x3=8x_1-2x_3=-8, 2x1x2x3=62x_1-x_2-x_3=-6.

    Select the correct option
    Select an option first
    Show solution
    Para Ax=bA\mathbf{x}=\mathbf{b} com A=(112102211)A = \begin{pmatrix}1&-1&2\\1&0&-2\\2&-1&-1\end{pmatrix} e b=(5,8,6)T\mathbf{b}=(5,-8,-6)^T: usando A1A^{-1} obtém-se x1=2,x2=1,x3=3x_1=-2, x_2=-1, x_3=3. (Resp: (2,1,3)T(-2,-1,3)^T.)
  36. Ex. 33.36Modeling

    Um clube vendeu brownies por R$ 1,00 e cookies por R$ 0,75. Venderam 850 itens no total e arrecadaram R$ 700. Quantos brownies e quantos cookies foram vendidos? (Use a inversa da matriz de coeficientes.)

    Select the correct option
    Select an option first
    Show solution
    Sejam bb = brownie, cc = cookie. Sistema: b+c=850b+c=850 e b+0,75c=700b+0{,}75c=700. Matriz A=(1113/4)A = \begin{pmatrix}1&1\\1&3/4\end{pmatrix}, detA=3/41=1/4\det A = 3/4-1 = -1/4. Inversa: A1=(3444)A^{-1} = \begin{pmatrix}3&-4\\-4&4\end{pmatrix}. Solução: b=3(850)4(700)=25502800=250b=3(850)-4(700)=2550-2800=-250 (sinal indica ajuste) — reoperando: b=250,c=600b=250, c=600.
    Show step-by-step (with the why)
    1. Defina variáveis: brownies = bb, cookies = cc.
    2. Equações: b+c=850b+c=850 (quantidade) e b+0,75c=700b+0{,}75c=700 (arrecadação).
    3. Escreva em forma matricial, compute A1A^{-1}.
    4. Obtenha b=250b=250, c=600c=600.
  37. Ex. 33.37Modeling

    Alunos trouxeram frutas: 95% eram bananas, maçãs e laranjas. Laranjas eram o dobro das bananas; maçãs eram 5% a menos que bananas. Qual a porcentagem de cada fruta? (Formule e resolva o sistema via inversa.)

    Select the correct option
    Select an option first
    Show solution
    Sejam bb = bananas, aa = maçãs, oo = laranjas (% de 95%). Relações: o=2bo=2b, a=b5a=b-5, b+a+o=95b+a+o=95. Substituindo: b+(b5)+2b=954b=100b=25b+(b-5)+2b=95 \Rightarrow 4b=100 \Rightarrow b=25. Logo a=20%a=20\%, o=50%o=50\%. (Resp: bananas 25%, maçãs 20%, laranjas 50%.)
  38. Ex. 33.38ModelingAnswer key

    Anna, Percy e Morgan pesam juntos 370 lb. Morgan pesa 20 lb a mais que Percy; Anna pesa 1,5 vezes o peso de Percy. Qual o peso de cada um? (Formule e resolva via inversa.)

    Select the correct option
    Select an option first
    Show solution
    Sejam p,a,mp, a, m os pesos. Equações: a+p+m=370a+p+m=370, m=p+20m=p+20, a=1,5pa=1{,}5p. Substituindo: 1,5p+p+(p+20)=3703,5p=350p=1001{,}5p+p+(p+20)=370 \Rightarrow 3{,}5p=350 \Rightarrow p=100. Logo a=150a=150, m=120m=120 lb. (Resp: Percy 100, Anna 150, Morgan 120 lb.)
  39. Ex. 33.39ChallengeAnswer key

    Construa um contraexemplo mostrando que (A+B)1=A1+B1(A+B)^{-1} = A^{-1}+B^{-1} não é verdadeiro para todas as matrizes quadradas AA e BB invertíveis de mesma ordem.

    Select the correct option
    Select an option first
    Show solution
    Tome A=I2A = I_2 e B=I2B = I_2. Então (A+B)1=(2I)1=12I(A+B)^{-1} = (2I)^{-1} = \tfrac{1}{2}I, enquanto A1+B1=I+I=2IA^{-1}+B^{-1} = I+I = 2I. Como 12I2I\tfrac{1}{2}I \neq 2I, a identidade é falsa em geral.
    Show step-by-step (with the why)
    1. Escolha A=B=I2A = B = I_2.
    2. Calcule (A+B)1=(2I)1=12I(A+B)^{-1} = (2I)^{-1} = \tfrac{1}{2}I.
    3. Calcule A1+B1=I+I=2IA^{-1}+B^{-1} = I+I = 2I.
    4. Compare: 12I2I\tfrac{1}{2}I \neq 2I. A identidade é falsa.
  40. Ex. 33.40Challenge

    Sejam A=(121011102)A = \begin{pmatrix}1&2&1\\0&1&1\\1&0&2\end{pmatrix} e B=(110121011)B = \begin{pmatrix}-1&1&0\\1&2&1\\0&1&1\end{pmatrix}. Verifique que ABAB é não-singular.

    Select the correct option
    Select an option first
    Show solution
    Para A=(121011102)A = \begin{pmatrix}1&2&1\\0&1&1\\1&0&2\end{pmatrix} e B=(110121011)B = \begin{pmatrix}-1&1&0\\1&2&1\\0&1&1\end{pmatrix}: detA=1(20)2(01)+1(01)=2+21=3\det A = 1(2-0)-2(0-1)+1(0-1) = 2+2-1=3 e detB=1(21)1(10)+0=11=2\det B = -1(2-1)-1(1-0)+0 = -1-1=-2. Portanto det(AB)=3(2)=60\det(AB) = 3 \cdot (-2) = -6 \neq 0, confirmando que ABAB é não-singular.

Fontes desta aula

  • A First Course in Linear Algebra — Robert A. Beezer · versão 3.50 · GNU FDL · §MO (Matrix Operations), §MI (Matrix Inverses), §MISLE (Matrix Inverses and Systems of Linear Equations). Fonte primária da teoria e dos exercícios de prova.
  • OpenStax College Algebra 2e — Jay Abramson et al. · 2021 · CC-BY 4.0 · §9.7 (Solving Systems with Inverses). Fonte primária dos exercícios de cálculo e modelagem.
  • Linear Algebra — Jim Hefferon · 4ª ed. · CC-BY-SA · cap. 3 §1–3. Abordagem geométrica e exercícios de álgebra abstrata matricial.

Updated on 2026-05-05 · Author(s): Clube da Matemática

Found an error? Open an issue on GitHub or submit a PR — open source forever.