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 2X2 matrix in C++

1 Answer

0 votes
// determinant is a scalar-valued of the entries of a square matrix

#include <iostream>

#define SIZE 2
 
int main()
{
    float arr[SIZE][SIZE] = { { 3, 8 },{ 4, 6 } };
 
    /*
    *       a b
    * arr =
    *       c d
    *
    * determinant = a*d - b*c
    *
    */
 
    float determinant = (arr[0][0] * arr[1][1]) - (arr[0][1] * arr[1][0]);
 
    std::cout << determinant << "\n";
}

 
 
/*
run:
 
-14
 
*/

 



answered Dec 2, 2016 by avibootz
edited Sep 5, 2024 by avibootz

Related questions

1 answer 100 views
1 answer 185 views
1 answer 92 views
1 answer 98 views
1 answer 92 views
1 answer 94 views
1 answer 103 views
...