Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,039 questions

52,004 answers

573 users

How to calculate the determinant of a 3X3 matrix in C

1 Answer

0 votes
#include <stdio.h> 

#define SIZE 3

int main(void)
{   
    float arr[SIZE][SIZE] = { {6, 1, 1}, {4, -2, 5}, {2, 8, 7} };
    
    /* 
     *       a b c
     * arr = d e f
     *       g h i
     * 
     * determinant = a*(e*i - f*h) - b*(d*i-f*g) + c*(d*h - e*g)
     * 
     */ 
    
    float determinant = arr[0][0] * (arr[1][1]*arr[2][2] - arr[1][2]*arr[2][1]) -
                        arr[0][1] * (arr[1][0]*arr[2][2] - arr[1][2]*arr[2][0]) +
                        arr[0][2] * (arr[1][0]*arr[2][1] - arr[1][1]*arr[2][0]);

    printf("%.2f", determinant);
          
    return 0;
}

  
/*
run:
    
-306.00

*/

 



answered Nov 15, 2016 by avibootz

Related questions

1 answer 124 views
1 answer 117 views
1 answer 101 views
1 answer 107 views
1 answer 113 views
1 answer 114 views
1 answer 165 views
...