Program to find if a 3 by 3 square matrix is symmetric
A symmetric matrix is a square matrix that is equal to its transpose. Let A be a symmetric matrix. Then, A = AT In this program, we need to check whether the given square matrix is symmetric or not. We will follow the steps given below. Step 1 – Accepts a square matrix as input Step 2 – Create a transpose of a matrix and store it in an array Step 3 – Check if input matrix is equal to its transpose or not If it is equal, then the input square matrix is symmetric. Here it goes… #include #include...