o numpy.linalg.solve() função fornece a solução de equações lineares na forma de matriz.
Considerando as seguintes equações lineares -
x + y + z = 6
2y + 5z = -4
2x + 5y - z = 27
Eles podem ser representados na forma de matriz como -
$$ \ begin {bmatrix} 1 & 1 & 1 \\ 0 & 2 & 5 \\ 2 & 5 & -1 \ end {bmatrix} \ begin {bmatrix} x \\ y \\ z \ end {bmatrix} = \ begin {bmatrix} 6 \\ - 4 \\ 27 \ end {bmatrix} $$
Se essas três matrizes são chamadas A, X e B, a equação se torna -
A*X = B
Or
X = A-1B