Solving Multiple Linear Equations With Numpy
- realcode4you
- Jun 28, 2021
- 1 min read

Here we have solved the below Multiple Linear Equations using numpy:
š„+2š¦āš§=42
š„+š¦+š§=ā2
š„+2š¦+š§=2
Import Libraries
import numpy as np
Creating Array of values using numpy
# coefficient matrix
A = np.array([[1, 2, -1], [2, 1, 1], [1, 2, 1]])
# numbers on the right without variables
b = np.array([4, -2, 2])
# solve using np.linagl.solve()
np.linalg.solve(A, b)
Output
array([-1.66666667, 2.33333333, -1. ])
Comments