Q:

Write a NumPy program to compute the determinant of a given square array

0

Write a NumPy program to compute the determinant of a given square array.

From Wikipedia: In linear algebra, the determinant is a value that can be computed from the elements of a square matrix. The determinant of a matrix A is denoted det(A), det A, or |A|. Geometrically, it can be viewed as the scaling factor of the linear transformation described by the matrix.

In the case of a 2 × 2 matrix the determinant may be defined as:

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy as np
from numpy import linalg as LA
a = np.array([[1, 0], [1, 2]])
print("Original 2-d array")
print(a)
print("Determinant of the said 2-D array:")
print(np.linalg.det(a))

Sample Output:

Original 2-d array
[[1 0]
 [1 2]]
Determinant of the said 2-D array:
2.0

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now