Find Determinant of Matrix
Find Determinant of Matrix
About us
MD. Azizur Rahman Arzu_40
Esrad Jahan Erad_41
Sami Islam_42
SM Mahabub_44
MD. Emon Biswas_45
Introduction: Defining 2d matrix
◦ Base Case:
◦ If the matrix is 1x1, the determinant is simply the value of that single element.
◦ 2x2 Matrix:
◦ For a 2x2 matrix:
[a, b]
[c, d]
◦ 3x3 Matrix:
◦ For a 3x3 matrix:
[a, b, c]
[d, e, f]
[g, h, i]
Explaining the mathematical approach I will
take to solve the problem
The determinant is calculated as the sum of products of each element in the first row
and its corresponding cofactor:
◦ Co factor calculation:
Cᵢⱼ = (-1)^(i + j) * Mᵢⱼ