You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
2.5 KiB
Java

/*
This is the java implementation of calculating the determinant of the given matrix. Determinant defines the unique properties for the matrix, like the matrix is invertible if its deteminant is non-zero.
*/
//This is a sample program to calculate the determinant of the given matrix
//The complexity of the code is O(n^3)
import java.util.*;
public class Determinant
{
public double determinant(double A[][],int N)
{
double det=0;
if(N == 1)
{
det = A[0][0];
}
else if (N == 2)
{
det = A[0][0]*A[1][1] - A[1][0]*A[0][1];
}
else
{
det=0;
for(int j1=0; j1<N; j1++)
{
double[][] m = new double[N-1][];
for(int k=0; k<(N-1); k++)
{
m[k] = new double[N-1];
}
for(int i=1; i<N; i++)
{
int j2=0;
for(int j=0; j<N; j++)
{
if(j == j1)
continue;
m[i-1][j2] = A[i][j];
j2++;
}
}
det += Math.pow(-1.0,1.0+j1+1.0)* A[0][j1] * determinant(m,N-1);
}
}
return det;
}
public static void main(String args[])
{
Scanner input = new Scanner(System.in);
System.out.println("Enter the order of the square matrix");
int n = input.nextInt();
System.out.println("Enter the elements of the square matrix");
double[][] mat = new double[n][n];
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
{
mat[i][j] = input.nextDouble();
}
}
Invertible_Matrix I = new Invertible_Matrix();
System.out.println("The determinant of the Matrix is : "+I.determinant(mat, n));
input.close();
}
}
/*
Enter the order of the square matrix
2
Enter the elements of the square matrix
1 2
3 4
The determinant of the Matrix is : -2.0