Matemática, perguntado por KEVINALVES259KEVIN, 1 ano atrás

obter a matriz A= (aij) 4*3 definida foi aij= 2 i-j

Soluções para a tarefa

Respondido por bokomoko
1
*A= (aij) 4*3 definida foi aij= 2 i-j

A[i,j] = 2 * i - j
Por 4 linhas e 3 colunas

A[1,1] = 2 * 1 - 1 = 1
A[1,2] = 2 * 1 - 2 = 0
A[1,3] = 2 * 1 - 3 = -1
A[2,1] = 2 * 2 - 1 = 3
A[2,2] = 2 * 2 - 2 = 2
A[2,3] = 2 * 2 - 3 = 1
A[3,1] = 2 * 3 - 1 = 5
A[3,2] = 2 * 3 - 2 = 4
A[3,3] = 2 * 3 - 3 = 3 
A[4,1] = 2 * 4 - 1 = 7
A[4,2] = 2 * 4 - 2 = 6
A[4,3] = 2 * 4 - 3 = 5

a matriz vai ficar assim
  \left[\begin{array}{ccc}1&0&-1\\3&2&1\\5&4&3\\7&6&5\end{array}\right]
Perguntas interessantes