Computer Science, asked by mahiway9832, 1 year ago

Write python program 60 points solve a system of linear equations

Answers

Answered by gabbar8298
1

that value of the variable which makes on equation true is called the solution to the equation

Answered by 217him217
2

Answer:

import numpy as np

A = np.array([[8, 3, -2], [-4, 7, 5], [3, 4, -12]])

b = np.array([9, 15, 35])

x = np.linalg.solve(A, b)

Similar questions