answersLogoWhite

0


Best Answer

This cannot be answered. This does not make any sense.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Find the rank of the determinant of 1 2 3 4 5 6 its a 2 x 3 matrics?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Find the determinant of 1 a AA AA 1 a a AA 1?

Assuming that the terms, a and AA, are commutative, It is 1 + a^3 + (AA)^3 - 3aAA


How do you find the variable in this matrix 3 -2 5 a ...the determinant is 7?

If it a 2x2 matrix, the determinant is 3*a - (-2)*5 = 3a + 10 = 7 So 3a = -3 so a = -1


What is the determinant of matrix image?

1


What is the determinant of an idempotent matrix?

0 or 1


How do you find the area of a triangle using matrix methods?

Put the three points in a matrix with the last column with ones. Then find the determinant, then multiple by .5 Example: (1,1) (2,4)(4,2) 1 1 1 2 4 1 4 2 1 The determinant is: [(1*4*1)+(1*1*4)+(2*2*1)]-[(1*4*4)+(1*2*1)+(1*2*1)]=12-20= -8 Therefore you must multiple by -.5= 4


What is the solution of this question By wronskian determinant method please find whether the solution exist or not where.... y and 8321cos and sup2x y and 83221 plus cos2x?

What is the solution of this question By wronskian determinant method please find whether the solution exist or not where.... y1 = (squre of) cos x, y2 = 1 + cos 2 x.


What does rank 1 rank 2 rank 3 rank 4 rank 5 rank 6 rank 7 rank 8 rank 9 and rank 10 mean on www.xfire.com?

1, 1, 3, 6, 6, 6, 9


What is the possible determinant of unitary matrix?

|Det(U)| = 1 so that Det(U) = ±1


How do you find your rank in Mario Kart?

1. Go to Mario Kart Chanel and click on 'Rankings'


What is the rank of acropolis in mp?

1 rank ..


What is the rank of mtu in up?

1 rank


Determinant of matrix in java?

/*This function will return the determinant of any two dimensional matrix. For this particular function a two dimensional double matrix needs to be passed as arguments - Avishek Ghosh*/ public double determinant(double[][] mat) { double result = 0; if(mat.length 2) { result = mat[0][0] * mat[1][1] - mat[0][1] * mat[1][0]; return result; } for(int i = 0; i < mat[0].length; i++) { double temp[][] = new double[mat.length - 1][mat[0].length - 1]; for(int j = 1; j < mat.length; j++) { System.arraycopy(mat[j], 0, temp[j-1], 0, i); System.arraycopy(mat[j], i+1, temp[j-1], i, mat[0].length-i-1); } result += mat[0][i] * Math.pow(-1, i) * determinant(temp); } return result; }