To write a python program to find a solution to a system of linear equations.
- Hardware – PCs
- Anaconda – Python 3.7 Installation / Moodle-Code Runner
Import the numpy module to use the built-in functions for calculation
Prepare the lists from each linear equations and assign in np.array()
Using the np.linalg.solve(), we can find the solutions.
End the program
#Program to find the solution for the given linear equations.
#Developed by:Sanjit.P
#RegisterNumber:23002570
import numpy as np
a=[1,-3],[3,1]
b=[0,10]
c=np.array(a)
d=np.array(b)
print(np.linalg.solve(a,b))Thus the solutions for the linear equations are successfully solved using python program
