answersLogoWhite

0


Best Answer

Symmetric Matrix:

Given a square matrix A such that A'=A, where A' is the transpose of A, then A is a symmetric matrix.

note: No need to think about diagonal elements, they can be anything.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the definition of a symmetric matrix?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the definition of a matrix?

Symmetric Matrix:Given a square matrix A such that A'=A, where A' is the transpose of A, then A is a symmetric matrix.note: No need to think about diagonal elements, they can be anything.


what is the definition of The Matrix?

Symmetric Matrix:Given a square matrix A such that A'=A, where A' is the transpose of A, then A is a symmetric matrix.note: No need to think about diagonal elements, they can be anything.


What is the definition of an anti-symmetric matrix?

The Definition of an Anti-Symmetric Matrix:If a square matrix, A, is equal to its negative transpose, -A', then A is an anti-symmetric matrix.Notes:1. All diagonal elements of A must be zero.2. The cross elements of A must have the same magnitude, but opposite sign.


Prove that a matrix which is both symmetric as well as skew symmetric is a null matrix?

Let A be a matrix which is both symmetric and skew symmetric. so AT=A and AT= -A so A =- A that implies 2A =zero matrix that implies A is a zero matrix


What is a skew symmetric matrix?

A skew symmetric matrix is a square matrix which satisfy, Aij=-Aji or A=-At


When you call adjacency matrix in symmetric matrix?

If your graph is undirected, then its adjacency matrix will be symmetric. Faizan


What is the eigen value of a real symmetric matrix?

The eigen values of a real symmetric matrix are all real.


What is a symmetric matrix?

a square matrix that is equal to its transpose


Is null square matrix a skew symmetric?

yes, it is both symmetric as well as skew symmetric


What is the symbol for skew?

In linear algebra, a skew-symmetric matrix is a square matrix .....'A'


What type of matrix is a vector?

Vector matrix has both size and direction. There are different types of matrix namely the scalar matrix, the symmetric matrix, the square matrix and the column matrix.


How do you write a program in c plus plus to check if an array is symmetric?

To determine if an array is symmetric, the array must be square. If so, check each element against its transpose. If all elements are equal, the array is symmetric.For a two-dimensional array (a matrix) of order n, the following code will determine if it is symmetric or not:templatebool symmetric(const std::array& matrix){for (size_t r=0 ; r