+ 1
Please answer anyone
Write a program to find the inverse of a 3×3 matrix over the field ? entered by the user, if the determinant of the matrix is non-zero. The program also finds the sum of the square of the diagonal elements under modulo 23 of the inverse of the given matrix.
2 Respostas
+ 3
Try double array like double input[3][3]....use two for loops to get all input using cin..
Rest all is simple maths of finding determinant which you will find formula on Google if not aware....
Only tricky part of problem is modulo which is again maths...
Give this a try and share your code if you still face any problem
+ 1
What's the summary of what your looking for in math terms?