los numpy.linalg.solve() La función da la solución de ecuaciones lineales en forma de matriz.
Considerando las siguientes ecuaciones lineales:
x + y + z = 6
2y + 5z = -4
2x + 5y - z = 27
Se pueden representar en 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} $$
Si estas tres matrices se llaman A, X y B, la ecuación se convierte en -
A*X = B
Or
X = A-1B